Skip to content

Commit

Permalink
SOAP-BPNN does not support multi-gpu
Browse files Browse the repository at this point in the history
  • Loading branch information
frostedoyster committed Jul 28, 2024
1 parent fb3df90 commit ab3d1c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/metatrain/experimental/soap_bpnn/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def __init__(self, atomic_types: List[int], n_layer: int) -> None:

class SoapBpnn(torch.nn.Module):

__supported_devices__ = ["multi-gpu", "cuda", "cpu"]
__supported_devices__ = ["cuda", "cpu"]
__supported_dtypes__ = [torch.float64, torch.float32]

def __init__(self, model_hypers: Dict, dataset_info: DatasetInfo) -> None:
Expand Down

0 comments on commit ab3d1c3

Please sign in to comment.