Skip to content

Commit

Permalink
Fix spacing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
gahdritz authored Apr 10, 2023
1 parent 208cce6 commit c21e5e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openfold/model/triangular_multiplicative_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ def forward(self,
# Prevents overflow of torch.matmul in combine projections in
# reduced-precision modes
a = a / a.std()
b = b / b.std()
b = b / b.std()

if(is_fp16_enabled()):
with torch.cuda.amp.autocast(enabled=False):
Expand Down

0 comments on commit c21e5e7

Please sign in to comment.