Skip to content

Commit e5d90af

Browse files
author
ardagoreci
committed
remove compilation
1 parent 064b372 commit e5d90af

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/models/diffusion_module.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,6 @@ def rescale_with_updates(
158158
r_update_scale = torch.sqrt(noisy_pos_scale) * timesteps.unsqueeze(-1)
159159
return noisy_atoms * noisy_pos_scale + r_updates * r_update_scale
160160

161-
@torch.compile
162161
def forward(
163162
self,
164163
noisy_atoms: Tensor, # (bs, S, n_atoms, 3)

src/models/model.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ def __init__(self, config):
5959
LinearNoBias(self.c_z, self.c_z)
6060
)
6161

62-
@torch.compile
6362
def run_trunk(
6463
self,
6564
feats: Dict[str, Tensor],

0 commit comments

Comments
 (0)