Commit da37880b authored by Jennifer Wei's avatar Jennifer Wei
Browse files

Allow numpy>2 and support compute capability >9

parent cb899a5a
......@@ -14,7 +14,7 @@ dependencies:
- pdbfixer
- pytorch-lightning
- biopython
- numpy<2.0.0
- numpy
- pandas
- PyYAML
- requests
......
......@@ -54,6 +54,7 @@ def get_cuda_bare_metal_version(cuda_dir):
compute_capabilities = set([
(5, 2), # Titan X
(6, 1), # GeForce 1000-series
(9, 0), # Hopper
])
compute_capabilities.add((7, 0))
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment