-
Notifications
You must be signed in to change notification settings - Fork 1
use new package_tool for autohpl's openblas #57
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
sayalibhavsar
wants to merge
17
commits into
master
Choose a base branch
from
autohpl_pkg
base: master
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.
Conversation
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
9662bf2 to
facc041
Compare
facc041 to
a2025fc
Compare
- Update openblas_packages.json to use FlexiBLAS packages for RHEL 10
(flexiblas, flexiblas-devel, flexiblas-openblas-openmp)
- Fix check_mpi() to handle RHEL 10's direct PATH installation
(RHEL 10 doesn't use environment modules for MPI)
- Add zip/unzip packages to general_packages.json for all distros
(required by save_results script)
Tested on RHEL 10 with --regression flag.
- Fix OS ID from 'amazon' to 'amzn' to match detect_os output
- Add version detection logic to skip OpenBLAS package install for AL2
(AL2 compiles OpenBLAS from source, AL2023 uses packages)
Tested on:
- Amazon Linux 2 (compiles OpenBLAS from source)
- Amazon Linux 2023 (uses packages)
- fix OpenBLAS typo in the base Makefile - add a SLES-specific Makefile with correct MPI and OpenBLAS paths - update size_platform() for SLES on x86_64 and aarch64 - have build_hpl() to detect and use the SLES Makefile
- Added RHEL 10-specific makefiles using FlexiBLAS (libopenblaso.so.0) - Added RHEL 10 MPI PATH and LD_LIBRARY_PATH setup for build and runtime - Support for both ARM (aarch64) and x86_64 (Intel/AMD) architectures - Tested on m6g.2xlarge (Graviton2 ARM)
Contributor
Author
|
https://docs.google.com/document/d/106sEgjusKeyZpAGA48lAd77iKx0coh_HATkMIKADL5w/edit?tab=t.0 |
3740b28 to
2eb1b4f
Compare
2eb1b4f to
b3179fd
Compare
cd1d8de to
f9f35a9
Compare
7757e76 to
f9f35a9
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description
This PR introduces centralized JSON files for package dependencies in wrappers. Common packages (compilers, build tools, MPI) are defined in
general_packages.json, and library-specific ones (e.g., OpenBLAS) inopenblas_packages.json. Thebuild_run_hpl.shscript now uses these files to streamline and deduplicate package installation.Before vs After
Before: Duplicate inline
package_toolcalls for each package; dependencies like gcc, git, make, and wget required manual or repeated installation.After: Unified
package_toolcall using JSON configs; common and library-specific dependencies(mkl, blis) are handled cleanly without repetition.Notes
Standardizes package management across wrappers for RHEL, Ubuntu, and Amazon Linux.
JIRA: [RPOPC-689](https://issues.redhat.com/browse/RPOPC-689)