forked from pool/openmpi5
- Updated UCX version requirement to v1.9
- Documentation Improvements
- Updated `coll tuned` rules file documentation to reflect changes in versioning and features.
- Updated CUDA-related networking documentation for consistency.
- Improved descriptions for `mpirun` options, including ``--pmixmca`` and ``--prtemca``.
- Fixed typos and formatting issues in `mpirun` man pages.
- Functionality Enhancements
- Improved argument checking for ``MPI_Comm_create_from_group`` and ``MPI_Intercomm_create_from_groups`` to align with MPI 4.0 standards.
- Addressed potential race conditions in `PMIx_Group_construct` calls by adding discriminators.
- Fixed ``MPI_Wtime`` to initialize timing relative to ``MPI_Init`` for accurate session-level measurements.
- Added support for the `alltoall_algorithm_max_requests` parameter in the `coll tuned` rules file, maintaining backward compatibility.
- Introduced a version identifier for the `coll tuned` rules file for better parser handling.
- Adjusted MCA variable scopes across multiple components to allow setting via the `MPI_T` interface: `coll adapt,ucc, han, basic, hcoll`
- Bug Fixes and Minor Enhancements
- Ensures that singletons properly create their own sessions directory trees.
- Fixed community Jenkins build pipeline to handle branch commits properly.
- Resolved missing profiling symbols in the `mpi_f08` Fortran library.
- Corrected parameter mismatches in `coll/cuda` functions to avoid type issues.
- Fixed build issues on Hurd.
- Removed unused portions of rcache base structure.
- Fixed oshmem base segment address exchange.
- Fixed UCC collective fallback issue.
- Updated Nvidia/Mellanox platform file
- openMPI 5 is now the default openmpi for suse_version >= 1600
- Switch to dist tarball to drop Sphinx and other python dependencies
- Add Fix-type-mismatch-error.patch to fix a compilation error
OBS-URL: https://build.opensuse.org/package/show/science:HPC/openmpi5?expand=0&rev=23
31 lines
1.2 KiB
Diff
31 lines
1.2 KiB
Diff
commit fc4fb3a80615992277717e3e29ce585ebe1f2256
|
|
Author: Tomislav Janjusic <tomislavj@nvidia.com>
|
|
Date: Tue Feb 18 12:25:27 2025 -0600
|
|
|
|
Fix type mismatch error
|
|
|
|
Signed-off-by: Tomislav Janjusic <tomislavj@nvidia.com>
|
|
|
|
diff --git oshmem/mca/sshmem/base/sshmem_base_open.c oshmem/mca/sshmem/base/sshmem_base_open.c
|
|
index 1f0d1eb761e2..2694120e1cfe 100644
|
|
--- oshmem/mca/sshmem/base/sshmem_base_open.c
|
|
+++ oshmem/mca/sshmem/base/sshmem_base_open.c
|
|
@@ -31,7 +31,7 @@
|
|
* globals
|
|
*/
|
|
|
|
-void *mca_sshmem_base_start_address = UINTPTR_MAX;
|
|
+void *mca_sshmem_base_start_address = (void *)UINTPTR_MAX;
|
|
|
|
char * mca_sshmem_base_backing_file_dir = NULL;
|
|
|
|
@@ -49,7 +49,7 @@ mca_sshmem_base_register (mca_base_register_flag_t flags)
|
|
"base",
|
|
"start_address",
|
|
"Specify base address for shared memory region",
|
|
- MCA_BASE_VAR_TYPE_UNSIGNED_LONG_LONG,
|
|
+ MCA_BASE_VAR_TYPE_UNSIGNED_LONG,
|
|
NULL,
|
|
0,
|
|
MCA_BASE_VAR_FLAG_SETTABLE,
|