-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathrun_modelinfer_pytorch_jit.py
219 lines (198 loc) · 8 KB
/
run_modelinfer_pytorch_jit.py
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
# Copyright (c) 2023 Intel Corporation
#
# 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 os
import pathlib
import pickle
from runners.timmer import Timmers
from runners.saver import load_feature_dict_if_exist
from absl import app
from absl import flags
from absl import logging
import torch
from alphafold.common import protein
from alphafold.model import config
from alphafold_pytorch_jit import net as model
import jax
import intel_extension_for_pytorch as ipex
import numpy as np
import random
import sys
bf16 = (os.environ.get('AF2_BF16') == '1')
print("bf16 variable: ", bf16)
try:
from alphafold_pytorch_jit.basics import GatingAttention
from tpp_pytorch_extension.alphafold.Alpha_Attention import GatingAttentionOpti_forward
GatingAttention.forward = GatingAttentionOpti_forward
from alphafold_pytorch_jit.backbones import TriangleMultiplication
from tpp_pytorch_extension.alphafold.Alpha_TriangleMultiplication import TriangleMultiplicationOpti_forward
TriangleMultiplication.forward = TriangleMultiplicationOpti_forward
is_tpp = True
print('Running with Intel Optimizations. TPP extension detected.')
except:
is_tpp = False
print('[warning] No TPP extension detected, will fallback to imperative mode')
### Define Flags
flags.DEFINE_list('fasta_paths', None, 'Paths to FASTA files, each containing '
'one sequence. Paths should be separated by commas. '
'All FASTA paths must have a unique basename as the '
'basename is used to name the output directories for '
'each prediction.')
flags.DEFINE_string('output_dir', None, 'Path to a directory that will '
'store the results.')
flags.DEFINE_string('model_names', None, 'Names of models to use.') ### updated
flags.DEFINE_string('root_params', None, 'root directory of model parameters') ### updated
flags.DEFINE_enum('preset', 'full_dbs',
['reduced_dbs', 'full_dbs', 'casp14'],
'Choose preset model configuration - no ensembling and '
'smaller genetic database config (reduced_dbs), no '
'ensembling and full genetic database config (full_dbs) or '
'full genetic database config and 8 model ensemblings '
'(casp14).')
flags.DEFINE_integer('random_seed', None, 'The random seed for the data '
'pipeline. By default, this is randomly generated. Note '
'that even if this is set, Alphafold may still not be '
'deterministic, because processes like GPU inference are '
'nondeterministic.')
FLAGS = flags.FLAGS
MAX_TEMPLATE_HITS = 20
RELAX_MAX_ITERATIONS = 0
RELAX_ENERGY_TOLERANCE = 2.39
RELAX_STIFFNESS = 10.0
RELAX_EXCLUDE_RESIDUES = []
RELAX_MAX_OUTER_ITERATIONS = 20
### helper func: validate required options
def _check_flag(flag_name: str, preset: str, should_be_set: bool):
if should_be_set != bool(FLAGS[flag_name].value):
verb = 'be' if should_be_set else 'not be'
raise ValueError(f'{flag_name} must {verb} set for preset "{preset}"')
### main func for model inference
def alphafold_infer(
timmer: Timmers,
fasta_name: str,
output_dir_base: str,
random_seed: int):
print('### Validate preprocessed results.')
timings = {}
output_dir = os.path.join(output_dir_base, fasta_name)
print("### [INFO] output_dir=", output_dir)
assert os.path.isdir(output_dir)
tmp_output_dir = os.path.join(output_dir, 'intermediates')
print("#########", tmp_output_dir)
assert os.path.isdir(tmp_output_dir)
ftmp_processed_featdict = os.path.join(
tmp_output_dir,
'processed_features.npz')
processed_feature_dict = load_feature_dict_if_exist(
ftmp_processed_featdict)
if processed_feature_dict is None:
raise FileNotFoundError(
'Invalid processed features: ',
ftmp_processed_featdict)
plddts = {}
### prepare model runners
processed_feature_dict = jax.tree_map(
lambda x:torch.tensor(x), processed_feature_dict)
if FLAGS.preset in ('reduced_dbs', 'full_dbs'):
num_ensemble = 1
elif FLAGS.preset == 'casp14':
num_ensemble = 8
model_runners = {}
model_list = FLAGS.model_names.strip('[]').split(',')
print("List of models:", model_list)
for model_name in model_list:
model_config = config.model_config(model_name)
model_config['data']['eval']['num_ensemble'] = num_ensemble
root_params = FLAGS.root_params + model_name
model_runner = model.RunModel(
model_config,
root_params,
timmer,
random_seed)
model_runners[model_name] = model_runner
for model_name, model_runner in model_runners.items():
print('### [INFO] Execute model inference for ', model_name)
timmer_name = f'model inference: {model_name}'
timmer.add_timmer(timmer_name)
with torch.no_grad():
with torch.cpu.amp.autocast(enabled=bf16):
prediction_result = model_runner(processed_feature_dict)
timmer.end_timmer(timmer_name)
timmer.save()
print('### [INFO] post-assessment: plddt')
timmer_name = f'post-assessment by plddt: {model_name}'
timmer.add_timmer(timmer_name)
plddts[model_name] = np.mean(prediction_result['plddt'])
print("plddts score = ", plddts[model_name])
result_output_path = os.path.join(output_dir, f'result_{model_name}_pred_0.pkl')
with open(result_output_path, 'wb') as f:
pickle.dump(prediction_result, f, protocol=4)
timmer.end_timmer(timmer_name)
timmer.save()
print('### [INFO] post-save: unrelaxed structure')
timmer_name = f'post-save of unrelaxed pdb: {model_name}'
timmer.add_timmer(timmer_name)
b_factors = np.zeros_like(prediction_result['structure_module']['final_atom_mask'])
b_factors[:] = prediction_result['plddt'][:,None] # broadcast to all columns
unrelaxed_protein = protein.from_prediction(
jax.tree_map(lambda x:x.detach().numpy(),processed_feature_dict),
prediction_result,
b_factors)
unrelaxed_pdb_path = os.path.join(
output_dir,
f'unrelaxed_{model_name}_pred_0.pdb')
with open(unrelaxed_pdb_path, 'w') as h:
h.write(protein.to_pdb(unrelaxed_protein))
timmer.end_timmer(timmer_name)
timmer.save()
f_timings_output = os.path.join(output_dir, 'timings.json')
with open(f_timings_output, 'w') as h:
h.write(json.dumps(timings, indent=4))
h.write(json.dumps(plddts, indent=4))
def main(argv):
if len(argv) > 1:
raise app.UsageError('Too many cml args.')
# Check for duplicate FASTA file names.
fasta_names = [pathlib.Path(p).stem for p in FLAGS.fasta_paths]
if len(fasta_names) != len(set(fasta_names)):
raise ValueError('All FASTA paths must have a unique basename.')
# init timmers
f_timmer = os.path.join(FLAGS.output_dir, 'timmers_%s.txt' % fasta_names[0])
h_timmer = Timmers(f_timmer)
# init amber
h_timmer.save()
# init randomizer
random_seed = FLAGS.random_seed
if random_seed is None:
random_seed = random.randrange(sys.maxsize)
logging.info('Using random seed %d for the data pipeline', random_seed)
### predict
for fasta_path, fasta_name in zip(FLAGS.fasta_paths, fasta_names):
h_timmer.add_timmer('predict_%s' % fasta_name)
alphafold_infer(
timmer=h_timmer,
fasta_name=fasta_name,
output_dir_base=FLAGS.output_dir,
random_seed=random_seed)
h_timmer.end_timmer('predict_%s' % fasta_name)
h_timmer.save()
if __name__ == '__main__':
flags.mark_flags_as_required([
'fasta_paths',
'output_dir',
'root_params',
'model_names'
])
app.run(main)