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.
add tqdm dep; update jax-triton to v0.2.0
- Loading branch information
1 parent
040562e
commit b9ace52
Showing
2 changed files
with
38 additions
and
1 deletion.
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
36 changes: 36 additions & 0 deletions
36
easybuild/easyconfigs/j/jax-triton/jax-triton-0.2.0-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,36 @@ | ||
# Thomas Hoffmann, EMBL Heidelberg, [email protected], 2024/12 | ||
|
||
easyblock = 'PythonBundle' | ||
|
||
name = 'jax-triton' | ||
version = '0.2.0' | ||
versionsuffix = '-CUDA-%(cudaver)s' | ||
|
||
homepage = 'https://pypi.org/project/jax-triton' | ||
description = """The jax-triton repository contains integrations between JAX and Triton.""" | ||
|
||
toolchain = {'name': 'foss', 'version': '2024a'} | ||
|
||
dependencies = [ | ||
('Python', '3.12.3'), | ||
('CUDA', '12.6.0', '', SYSTEM), | ||
('jax', '0.4.35', versionsuffix), | ||
('Triton', '3.1.0', versionsuffix), | ||
] | ||
|
||
use_pip = True | ||
|
||
exts_list = [ | ||
('jax_triton', version, { | ||
'checksums': ['ed564a5ffb9e404557dc8d296e7eb30e501da5a4d7b03408acd0837c1c618c21'], | ||
}), | ||
] | ||
|
||
sanity_pip_check = True | ||
|
||
sanity_check_paths = { | ||
'files': [], | ||
'dirs': ['lib'], | ||
} | ||
|
||
moduleclass = 'ai' |