Skip to content

Commit

Permalink
gpu cpu install (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
joglekara authored Oct 17, 2024
1 parent f11e1c3 commit 60e014e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ def get_git_commit_hash():
packages=find_packages(),
python_requires=">=3.10",
install_requires=[
"jax[cuda12]",
"diffrax",
"matplotlib",
"scipy",
Expand All @@ -56,4 +55,8 @@ def get_git_commit_hash():
"tabulate",
"pydantic",
],
extras_require={
"cpu": ["jax"],
"gpu": ["jax[cuda12]"],
},
)

0 comments on commit 60e014e

Please sign in to comment.