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 c37078b commit aa19120Copy full SHA for aa19120
dmff/settings.py
@@ -1,4 +1,9 @@
1
-from jax.config import config
+try:
2
+ # jax < 0.4.20
3
+ from jax.config import config
4
+except:
5
+ # jax >= 0.4.20
6
+ from jax import config
7
8
PRECISION = 'double' # 'double'
9
requirements.txt
@@ -6,7 +6,7 @@ mkdocs-literate-nav>=0.4.1
mkdocstrings>=0.19.0
mkdocstrings-python>=0.7.0
pygments>=2.12
-jax>=0.4.1, <=0.4.20
+jax>=0.4.1
10
jaxlib>=0.4.1
11
pymbar>=4.0.0
12
tqdm
0 commit comments