-
Notifications
You must be signed in to change notification settings - Fork 706
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12140 from boegel/20210211190619_new_pr_nvtop110
{tools}[fosscuda/2019b] nvtop v1.1.0
- Loading branch information
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
34 changes: 34 additions & 0 deletions
34
easybuild/easyconfigs/n/nvtop/nvtop-1.1.0-fosscuda-2019b.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,34 @@ | ||
easyblock = 'CMakeMake' | ||
|
||
name = 'nvtop' | ||
version = '1.1.0' | ||
|
||
homepage = 'https://github.com/Syllo/nvtop' | ||
description = 'htop-like GPU usage monitor' | ||
|
||
toolchain = {'name': 'fosscuda', 'version': '2019b'} | ||
|
||
source_urls = ['https://github.com/Syllo/nvtop/archive/'] | ||
sources = ['%(version)s.tar.gz'] | ||
checksums = ['00470cde8fc48d5a5ed7c96402607e474414d94b562b21189bdde1dbe6b1d1f3'] | ||
|
||
dependencies = [ | ||
('ncurses', '6.1'), | ||
] | ||
|
||
builddependencies = [ | ||
('CMake', '3.15.3'), | ||
] | ||
|
||
separate_build_dir = True | ||
|
||
configopts = '-DNVML_INCLUDE_DIRS=$EBROOTCUDA/include -DNVML_LIBRARIES=$EBROOTCUDA/lib64/stubs/libnvidia-ml.so' | ||
|
||
sanity_check_paths = { | ||
'files': ['bin/nvtop'], | ||
'dirs': [], | ||
} | ||
|
||
sanity_check_commands = ["nvtop --help"] | ||
|
||
moduleclass = 'tools' |