forked from easybuilders/easybuild-easyconfigs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8e21bd7
commit 66cfa97
Showing
2 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
easybuild/easyconfigs/j/jaxtyping/jaxtyping-0.2.36-foss-2024a-CUDA-12.6.0.eb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Thomas Hoffmann, EMBL Heidelberg, [email protected], 2024/12 | ||
|
||
easyblock = 'PythonBundle' | ||
|
||
name = 'jaxtyping' | ||
version = '0.2.36' | ||
versionsuffix = '-CUDA-%(cudaver)s' | ||
|
||
homepage = 'https://github.com/patrick-kidger/jaxtyping' | ||
description = """ Type annotations and runtime type-checking for: | ||
1. shape and dtype of JAX arrays; | ||
(Now also supports PyTorch, NumPy, and TensorFlow!) | ||
2. PyTrees. """ | ||
toolchain = {'name': 'foss', 'version': '2024a'} | ||
|
||
builddependencies = [ | ||
('poetry', '1.8.3') | ||
] | ||
dependencies = [ | ||
('Python', '3.12.3'), | ||
('CUDA', '12.6.0', '', SYSTEM), | ||
('jax', '0.4.35', versionsuffix), | ||
] | ||
|
||
use_pip = True | ||
|
||
exts_list = [ | ||
(name, version, { | ||
'checksums': ['781ac44a3cf8982063d7ee48b5008ccfad7b13793bf878eb3058d5319aa08f0f'], | ||
}), | ||
] | ||
|
||
sanity_pip_check = True | ||
|
||
sanity_check_paths = { | ||
'files': [], | ||
'dirs': ['lib'], | ||
} | ||
|
||
moduleclass = 'ai' |