File size: 8,990 Bytes
4d20b62 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 | # Copyright 2025 ByteDance and/or its affiliates.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import json
import logging
import os
import time
import traceback
from contextlib import nullcontext
from typing import Any, Mapping
import torch
import torch.distributed as dist
from protenix.config import save_config
from protenix.utils.distributed import DIST_WRAPPER
from protenix.utils.seed import seed_everything
from protenix.utils.torch_utils import to_device
from pxdesign.data.infer_data_pipeline import InferenceDataset, get_inference_dataloader
from pxdesign.model.pxdesign import ProtenixDesign
from pxdesign.runner.dumper import DataDumper
from pxdesign.utils.infer import (
configure_runtime_env,
convert_to_bioassembly_dict,
derive_seed,
download_inference_cache,
get_configs,
)
from pxdesign.utils.inputs import process_input_file
logger = logging.getLogger(__name__)
class InferenceRunner(object):
def __init__(self, configs: Any) -> None:
self.configs = configs
self.init_env()
self.init_basics()
self.init_model()
self.load_checkpoint()
self.init_dumper()
self.init_data()
def init_env(self) -> None:
self.print(
f"Distributed environment: world size: {DIST_WRAPPER.world_size}, "
+ f"global rank: {DIST_WRAPPER.rank}, local rank: {DIST_WRAPPER.local_rank}"
)
self.use_cuda = torch.cuda.device_count() > 0
if self.use_cuda:
self.device = torch.device("cuda:{}".format(DIST_WRAPPER.local_rank))
os.environ["CUDA_DEVICE_ORDER"] = "PCI_BUS_ID"
all_gpu_ids = ",".join(str(x) for x in range(torch.cuda.device_count()))
devices = os.getenv("CUDA_VISIBLE_DEVICES", all_gpu_ids)
logging.info(
f"LOCAL_RANK: {DIST_WRAPPER.local_rank} - CUDA_VISIBLE_DEVICES: [{devices}]"
)
torch.cuda.set_device(self.device)
else:
self.device = torch.device("cpu")
if DIST_WRAPPER.world_size > 1:
dist.init_process_group(backend="nccl")
configure_runtime_env(
use_fast_ln=self.configs.use_fast_ln,
use_deepspeed_evo=self.configs.use_deepspeed_evo_attention,
)
logging.info("Finished init ENV.")
def init_basics(self) -> None:
self.dump_dir = self.configs.dump_dir
self.error_dir = os.path.join(self.dump_dir, "ERR")
os.makedirs(self.dump_dir, exist_ok=True)
os.makedirs(self.error_dir, exist_ok=True)
def init_model(self) -> None:
self.model = ProtenixDesign(self.configs).to(self.device)
def load_checkpoint(self) -> None:
checkpoint_path = os.path.join(
self.configs.load_checkpoint_dir, f"{self.configs.model_name}.pt"
)
if not os.path.exists(checkpoint_path):
raise FileNotFoundError(
f"Given checkpoint path does not exist [{checkpoint_path}]"
)
self.print(
f"Loading from {checkpoint_path}, strict: {self.configs.load_strict}"
)
checkpoint = torch.load(checkpoint_path, self.device)
sample_key = [k for k in checkpoint["model"].keys()][0]
self.print(f"Sampled key: {sample_key}")
if sample_key.startswith("module."): # DDP checkpoint has module. prefix
checkpoint["model"] = {
k[len("module.") :]: v for k, v in checkpoint["model"].items()
}
self.model.load_state_dict(
state_dict=checkpoint["model"],
strict=self.configs.load_strict,
)
self.model.eval()
self.print(f"Finish loading checkpoint.")
def init_dumper(self):
self.dumper = DataDumper(base_dir=self.dump_dir)
def init_data(self):
self.print(f"Input JSON: {self.configs.input_json_path}")
self.dataset = InferenceDataset(
input_json_path=self.configs.input_json_path,
use_msa=self.configs.use_msa,
)
self.design_test_dl = get_inference_dataloader(configs=self.configs)
@torch.no_grad()
def predict(self, data: Mapping[str, Mapping[str, Any]]) -> dict[str, torch.Tensor]:
eval_precision = {
"fp32": torch.float32,
"bf16": torch.bfloat16,
"fp16": torch.float16,
}[self.configs.dtype]
enable_amp = (
torch.autocast(device_type="cuda", dtype=eval_precision)
if torch.cuda.is_available()
else nullcontext()
)
data = to_device(data, self.device)
with enable_amp:
prediction = self.model(
input_feature_dict=data["input_feature_dict"],
mode="inference",
)
return prediction
@torch.no_grad()
def _inference(self, seed: int):
num_data = len(self.dataset)
orig_seqs = {}
for batch in self.design_test_dl:
data, atom_array, data_error_message = batch[0]
try:
if data_error_message:
logger.info(data_error_message)
continue
sample = data["sample_name"]
logger.info(
f"[Rank {DIST_WRAPPER.rank} ({data['sample_index'] + 1}/{num_data})] {sample}: "
f"N_asym={data['N_asym'].item()}, N_token={data['N_token'].item()}, "
f"N_atom={data['N_atom'].item()}, N_msa={data['N_msa'].item()}"
)
if sample not in orig_seqs:
data["sequences"].pop(-1) # generated binder chain
for seq_idx, seq in enumerate(data["sequences"]):
ent_k = list(seq.keys())[0]
label_asym_id = f"{chr(ord('A') + seq_idx)}0"
assert seq[ent_k]["count"] == 1
seq[ent_k]["label_asym_id"] = [label_asym_id]
orig_seqs[data["sample_name"]] = data["sequences"]
if self.dumper.check_completion("", sample, seed):
self.print(f"Skip sample={sample}: already dumped.")
continue
pred = self.predict(data)
self.dumper.dump(
"",
sample,
seed,
pred_dict=pred,
atom_array=atom_array,
entity_poly_type=data["entity_poly_type"],
)
logger.info(
f"[Rank {DIST_WRAPPER.rank}] {sample} succeeded. Saved to {self.dumper._get_dump_dir('', sample, seed)}"
)
except Exception as e:
logger.info(
f"[Rank {DIST_WRAPPER.rank}] {sample} {e}:\n{traceback.format_exc()}"
)
if hasattr(torch.cuda, "empty_cache"):
torch.cuda.empty_cache()
return orig_seqs
def print(self, msg: str):
if DIST_WRAPPER.rank == 0:
logger.info(msg)
def local_print(self, msg: str):
msg = f"[Rank {DIST_WRAPPER.local_rank}] {msg}"
logging.info(msg)
def main(argv=None):
configs = get_configs(argv)
os.makedirs(configs.dump_dir, exist_ok=True)
configs.input_json_path = process_input_file(
configs.input_json_path, out_dir=configs.dump_dir
)
download_inference_cache(configs)
# convert cif / pdb to bioassembly dict
if DIST_WRAPPER.rank == 0:
save_config(configs, os.path.join(configs.dump_dir, "config.yaml"))
with open(configs.input_json_path, "r") as f:
orig_inputs = json.load(f)
for x in orig_inputs:
convert_to_bioassembly_dict(x, configs.dump_dir)
configs.input_json_path = os.path.join(configs.dump_dir, "input_tasks.json")
with open(configs.input_json_path, "w") as f:
json.dump(orig_inputs, f, indent=4)
runner = InferenceRunner(configs)
logger.info(f"Loading data from\n{configs.input_json_path}")
if len(runner.dataset) == 0:
logger.info("Nothing to infer. Bye!")
return
seeds = [derive_seed(time.time_ns())] if not configs.seeds else configs.seeds
for seed in seeds:
print(f"----------Infer with seed {seed}----------")
seed_everything(seed=seed, deterministic=False)
runner._inference(seed)
if __name__ == "__main__":
main()
|