We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3c2b73 commit 6388cfcCopy full SHA for 6388cfc
alphafold3_pytorch/alphafold3.py
@@ -10,6 +10,7 @@
10
import torch
11
from torch import nn
12
from torch import Tensor
13
+from torch.amp import autocast
14
import torch.nn.functional as F
15
from torch.utils.checkpoint import checkpoint, checkpoint_sequential
16
@@ -2979,6 +2980,7 @@ class WeightedRigidAlign(Module):
2979
2980
""" Algorithm 28 """
2981
2982
@typecheck
2983
+ @autocast('cuda', enabled = False)
2984
def forward(
2985
self,
2986
pred_coords: Float['b n 3'], # predicted coordinates
pyproject.toml
@@ -1,6 +1,6 @@
1
[project]
2
name = "alphafold3-pytorch"
3
-version = "0.4.5"
+version = "0.4.6"
4
description = "Alphafold 3 - Pytorch"
5
authors = [
6
{ name = "Phil Wang", email = "[email protected]" },
0 commit comments