-
Notifications
You must be signed in to change notification settings - Fork 781
{data,tools}[GCCcore/13.3.0,NVHPC/24.9-CUDA-12.6.0] Szip v2.1.1, HDF5 v1.14.5 w/ serial #21632
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
sassy-crick
wants to merge
3
commits into
easybuilders:develop
Choose a base branch
from
sassy-crick:20241014112757_new_pr_Szip211
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
easybuild/easyconfigs/h/HDF5/HDF5-1.14.5-NVHPC-24.9-CUDA-12.6.0-serial.eb
This file contains hidden or 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,23 @@ | ||
| name = 'HDF5' | ||
| # Note: Odd minor releases are only RCs and should not be used. | ||
| version = '1.14.5' | ||
| versionsuffix = "-serial" | ||
|
|
||
| homepage = 'https://portal.hdfgroup.org/display/support' | ||
| description = """HDF5 is a data model, library, and file format for storing and managing data. | ||
| It supports an unlimited variety of datatypes, and is designed for flexible | ||
| and efficient I/O and for high volume and complex data.""" | ||
|
|
||
| toolchain = {'name': 'NVHPC', 'version': '24.9-CUDA-12.6.0'} | ||
| toolchainopts = {'pic': True} | ||
|
|
||
| source_urls = ['https://github.com/HDFGroup/hdf5/archive'] | ||
| sources = ['hdf5_%(version)s.tar.gz'] | ||
| checksums = ['c83996dc79080a34e7b5244a1d5ea076abfd642ec12d7c25388e2fdd81d26350'] | ||
|
|
||
| dependencies = [ | ||
| ('zlib', '1.3.1'), | ||
| ('Szip', '2.1.1'), | ||
| ] | ||
|
|
||
| moduleclass = 'data' | ||
This file contains hidden or 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,29 @@ | ||
| easyblock = 'ConfigureMake' | ||
|
|
||
| name = 'Szip' | ||
| version = '2.1.1' | ||
|
|
||
| homepage = 'https://docs.hdfgroup.org/archive/support/doc_resource/SZIP/index.html' | ||
|
|
||
| description = """ | ||
| Szip compression software, providing lossless compression of scientific data | ||
| """ | ||
|
|
||
| toolchain = {'name': 'GCCcore', 'version': '13.3.0'} | ||
| toolchainopts = {'pic': True} | ||
|
|
||
| source_urls = ['https://support.hdfgroup.org/ftp/lib-external/szip/%(version)s/src'] | ||
| sources = [SOURCELOWER_TAR_GZ] | ||
| checksums = ['21ee958b4f2d4be2c9cabfa5e1a94877043609ce86fde5f286f105f7ff84d412'] | ||
|
|
||
| builddependencies = [ | ||
| ('binutils', '2.42'), | ||
| ] | ||
|
|
||
| sanity_check_paths = { | ||
| 'files': ["lib/libsz.a", "lib/libsz.%s" % SHLIB_EXT] + | ||
| ["include/%s" % x for x in ["ricehdf.h", "szip_adpt.h", "szlib.h"]], | ||
| 'dirs': [], | ||
| } | ||
|
|
||
| moduleclass = 'tools' |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i think it's better to add
-CUDA-12.6.0to the versionsuffix instead of the versionThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done. I hope that does not break anything.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That seemed to have broken something. :-(
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have reverted that back to the original version.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The problem here is that this HDF5 version has a -serial suffix.
We moved all HDF5 to mpi level, iimpi/ompi without suffix.
So it should be at nvompi instead I guess