-
Notifications
You must be signed in to change notification settings - Fork 705
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 #21897 from stefan-wolfsheimer/20241122102718_new_…
…pr_HyperQueue0200 {tools}[system/system] HyperQueue v0.20.0
- Loading branch information
Showing
1 changed file
with
31 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
easyblock = 'BinariesTarball' | ||
|
||
name = 'HyperQueue' | ||
version = '0.20.0' | ||
|
||
homepage = 'https://it4innovations.github.io/hyperqueue/stable/' | ||
description = """ | ||
HyperQueue is a tool designed to simplify execution of large workflows (task graphs) on HPC clusters. | ||
It allows you to execute a large number of tasks in a simple way, without having to manually submit jobs | ||
into batch schedulers like Slurm or PBS. | ||
You just specify what you want to compute – HyperQueue will automatically ask for computational resources and | ||
dynamically load-balance tasks across all allocated nodes and cores. | ||
HyperQueue can also work without Slurm/PBS as a general task executor. | ||
""" | ||
|
||
toolchain = SYSTEM | ||
|
||
source_urls = ['https://github.com/It4innovations/hyperqueue/releases/download/v%(version)s/'] | ||
|
||
sources = ['hq-v%(version)s-linux-x64.tar.gz'] | ||
checksums = ['1b05177c9dd562a7ce1480796da2e8db169f963608719d398f21899d4f79f934'] | ||
|
||
sanity_check_paths = { | ||
'files': ['bin/hq'], | ||
'dirs': [], | ||
} | ||
|
||
sanity_check_commands = ["hq --help"] | ||
|
||
moduleclass = 'tools' |