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
e551f51
commit e166710
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
30 changes: 30 additions & 0 deletions
30
easybuild/easyconfigs/t/tensorboardX/tensorboardX-2.6.2.2-foss-2023b.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,30 @@ | ||
easyblock = 'PythonBundle' | ||
|
||
name = 'tensorboardX' | ||
version = '2.6.2.2' | ||
|
||
homepage = 'https://github.com/lanpa/tensorboardX' | ||
description = "Tensorboard for PyTorch." | ||
|
||
toolchain = {'name': 'foss', 'version': '2023b'} | ||
|
||
# tensorboardX v2.x works with tensorboards generated with TensorFlow 2, | ||
# but TensorFlow is not needed to use tensorboardX | ||
dependencies = [ | ||
('Python', '3.11.5'), | ||
('SciPy-bundle', '2023.11'), | ||
('protobuf-python', '4.25.3'), | ||
] | ||
|
||
use_pip = True | ||
|
||
exts_list = [ | ||
(name, version, { | ||
'modulename': '%(name)s', | ||
'checksums': ['c6476d7cd0d529b0b72f4acadb1269f9ed8b22f441e87a84f2a3b940bb87b666'], | ||
}), | ||
] | ||
|
||
sanity_pip_check = True | ||
|
||
moduleclass = 'vis' |