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 CSBDeep-0.7.4-foss-2022a-CUDA-11.7.0.eb
- Loading branch information
1 parent
3291637
commit e72478f
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
38 changes: 38 additions & 0 deletions
38
easybuild/easyconfigs/c/CSBDeep/CSBDeep-0.7.4-foss-2022a-CUDA-11.7.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,38 @@ | ||
# This easyconfig was created by the BEAR Software team at the University of Birmingham. | ||
easyblock = 'PythonBundle' | ||
|
||
name = 'CSBDeep' | ||
version = '0.7.4' | ||
versionsuffix = '-CUDA-%(cudaver)s' | ||
|
||
homepage = "https://csbdeep.bioimagecomputing.com/" | ||
description = """CSBDeep is a toolbox for Content-aware Image Restoration (CARE).""" | ||
|
||
toolchain = {'name': 'foss', 'version': '2022a'} | ||
|
||
dependencies = [ | ||
('Python', '3.10.4'), | ||
('CUDA', '11.7.0', '', SYSTEM), | ||
('SciPy-bundle', '2022.05'), | ||
('TensorFlow', '2.11.0', versionsuffix), | ||
('matplotlib', '3.5.2'), | ||
('tqdm', '4.64.0'), | ||
] | ||
|
||
use_pip = True | ||
sanity_pip_check = True | ||
|
||
exts_list = [ | ||
('tifffile', '2023.9.26', { | ||
'checksums': ['67e355e4595aab397f8405d04afe1b4ae7c6f62a44e22d933fee1a571a48c7ae'], | ||
}), | ||
(name, version, { | ||
'source_tmpl': '%(namelower)s-%(version)s.tar.gz', | ||
'checksums': ['85d6fc360bb33253ba6f543d75cf0cf123595f0ea4dd1fa76b1e5bc8fc55b901'], | ||
'modulename': '%(namelower)s', | ||
}), | ||
] | ||
|
||
sanity_check_commands = ['care_predict'] | ||
|
||
moduleclass = 'bio' |