Compare commits
No commits in common. "c8" and "c9-beta" have entirely different histories.
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
||||
SOURCES/ucx-1.15.0.tar.gz
|
||||
SOURCES/ucx-1.18.1.tar.gz
|
||||
|
||||
1
.ucx.metadata
Normal file
1
.ucx.metadata
Normal file
@ -0,0 +1 @@
|
||||
9c0f7b0bb7c459f54e6cdfb9acc94090b45be28a SOURCES/ucx-1.18.1.tar.gz
|
||||
132
SPECS/ucx.spec
132
SPECS/ucx.spec
@ -3,21 +3,18 @@
|
||||
%bcond_with cuda
|
||||
%bcond_with gdrcopy
|
||||
%bcond_without ib
|
||||
%if 0%{?fedora} >= 30 || 0%{?rhel} >= 7
|
||||
%bcond_with ib_cm
|
||||
%else
|
||||
%bcond_without ib_cm
|
||||
%endif
|
||||
%bcond_with knem
|
||||
%bcond_without rdmacm
|
||||
%bcond_with rocm
|
||||
%bcond_with ugni
|
||||
%bcond_with xpmem
|
||||
%bcond_with vfs
|
||||
%bcond_with mad
|
||||
%bcond_without mlx5
|
||||
|
||||
Name: ucx
|
||||
Version: 1.15.0
|
||||
Release: 2%{?dist}
|
||||
Version: 1.18.1
|
||||
Release: 1%{?dist}
|
||||
Summary: UCX is a communication library implementing high-performance messaging
|
||||
|
||||
License: BSD
|
||||
@ -49,8 +46,8 @@ BuildRequires: gdrcopy
|
||||
%if %{with ib}
|
||||
BuildRequires: libibverbs-devel
|
||||
%endif
|
||||
%if %{with ib_cm}
|
||||
BuildRequires: libibcm-devel
|
||||
%if %{with mlx5}
|
||||
BuildRequires: rdma-core-devel
|
||||
%endif
|
||||
%if %{with knem}
|
||||
BuildRequires: knem
|
||||
@ -67,6 +64,9 @@ BuildRequires: xpmem-devel
|
||||
%if %{with vfs}
|
||||
BuildRequires: fuse3-devel
|
||||
%endif
|
||||
%if %{with mad}
|
||||
BuildRequires: libibmad-devel libibumad-devel
|
||||
%endif
|
||||
|
||||
%description
|
||||
UCX is an optimized communication framework for high-performance distributed
|
||||
@ -91,6 +91,7 @@ Provides header files and examples for developing with UCX.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
autoreconf -fiv
|
||||
|
||||
%build
|
||||
%define _with_arg() %{expand:%%{?with_%{1}:--with-%{2}}%%{!?with_%{1}:--without-%{2}}}
|
||||
@ -105,13 +106,14 @@ Provides header files and examples for developing with UCX.
|
||||
%_with_arg cuda cuda \
|
||||
%_with_arg gdrcopy gdrcopy \
|
||||
%_with_arg ib verbs \
|
||||
%_with_arg ib_cm cm \
|
||||
%_with_arg mlx5 mlx5 \
|
||||
%_with_arg knem knem \
|
||||
%_with_arg rdmacm rdmacm \
|
||||
%_with_arg rocm rocm \
|
||||
%_with_arg xpmem xpmem \
|
||||
%_with_arg vfs fuse3 \
|
||||
%_with_arg ugni ugni \
|
||||
%_with_arg mad mad \
|
||||
%{?configure_options}
|
||||
make %{?_smp_mflags} V=1
|
||||
|
||||
@ -127,6 +129,7 @@ rm -f %{buildroot}%{_libdir}/ucx/lib*.a
|
||||
%{_libdir}/lib*.so.*
|
||||
%{_bindir}/ucx_info
|
||||
%{_bindir}/ucx_perftest
|
||||
%{_bindir}/ucx_perftest_daemon
|
||||
%{_bindir}/ucx_read_profile
|
||||
%{_bindir}/io_demo
|
||||
%{_datadir}/ucx
|
||||
@ -134,11 +137,13 @@ rm -f %{buildroot}%{_libdir}/ucx/lib*.a
|
||||
%doc README AUTHORS NEWS
|
||||
%{!?_licensedir:%global license %%doc}
|
||||
%license LICENSE
|
||||
%{_sysconfdir}/ucx/ucx.conf
|
||||
|
||||
%files devel
|
||||
%{_includedir}/uc*
|
||||
%{_libdir}/lib*.so
|
||||
%{_libdir}/pkgconfig/ucx*.pc
|
||||
%dir %{_libdir}/cmake/ucx
|
||||
%{_libdir}/cmake/ucx/*.cmake
|
||||
%{_datadir}/ucx/examples
|
||||
|
||||
@ -156,6 +161,7 @@ system calls process_vm_readv/writev() for one-shot memory copy from another
|
||||
process.
|
||||
|
||||
%files cma
|
||||
%dir %{_libdir}/ucx
|
||||
%{_libdir}/ucx/libuct_cma.so.*
|
||||
%endif
|
||||
|
||||
@ -170,6 +176,7 @@ to UCX communication routines, and transports taking advantage of GPU-Direct
|
||||
technology for direct data transfer between GPU and RDMA devices.
|
||||
|
||||
%files cuda
|
||||
%dir %{_libdir}/ucx
|
||||
%{_libdir}/ucx/libucx_perftest_cuda.so.*
|
||||
%{_libdir}/ucx/libucm_cuda.so.*
|
||||
%{_libdir}/ucx/libuct_cuda.so.*
|
||||
@ -185,6 +192,7 @@ Provide GDRCopy support for UCX. GDRCopy is a low-latency GPU memory copy
|
||||
library, built on top of the NVIDIA GPUDirect RDMA technology.
|
||||
|
||||
%files gdrcopy
|
||||
%dir %{_libdir}/ucx
|
||||
%{_libdir}/ucx/libuct_cuda_gdrcopy.so.*
|
||||
%endif
|
||||
|
||||
@ -200,21 +208,10 @@ Typically these transports provide RDMA support, which enables a fast and
|
||||
hardware-offloaded data transfer.
|
||||
|
||||
%files ib
|
||||
%dir %{_libdir}/ucx
|
||||
%{_libdir}/ucx/libuct_ib.so.*
|
||||
%endif
|
||||
|
||||
%if %{with ib_cm}
|
||||
%package ib-cm
|
||||
Requires: %{name}-ib%{?_isa} = %{version}-%{release}
|
||||
Summary: UCX InfiniBand connection-manager support
|
||||
|
||||
%description ib-cm
|
||||
Provides Infiniband Connection Manager (also known as ibcm) support for UCX.
|
||||
|
||||
%files ib-cm
|
||||
%{_libdir}/ucx/libuct_ib_cm.so.*
|
||||
%endif
|
||||
|
||||
%if %{with knem}
|
||||
%package knem
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
@ -226,6 +223,7 @@ kernel module that enables high-performance intra-node MPI communication
|
||||
for large messages.
|
||||
|
||||
%files knem
|
||||
%dir %{_libdir}/ucx
|
||||
%{_libdir}/ucx/libuct_knem.so.*
|
||||
%endif
|
||||
|
||||
@ -240,6 +238,7 @@ Provides RDMA connection-manager support to UCX, which enables client/server
|
||||
based connection establishment for RDMA-capable transports.
|
||||
|
||||
%files rdmacm
|
||||
%dir %{_libdir}/ucx
|
||||
%{_libdir}/ucx/libuct_rdmacm.so.*
|
||||
%endif
|
||||
|
||||
@ -252,6 +251,7 @@ Summary: UCX ROCm GPU support
|
||||
Provides Radeon Open Compute (ROCm) Runtime support for UCX.
|
||||
|
||||
%files rocm
|
||||
%dir %{_libdir}/ucx
|
||||
%{_libdir}/ucx/libuct_rocm.so.*
|
||||
%{_libdir}/ucx/libucm_rocm.so.*
|
||||
|
||||
@ -265,6 +265,7 @@ Provide GDRCopy support for UCX ROCM. GDRCopy is a low-latency GPU memory copy
|
||||
library, built on top of the NVIDIA GPUDirect RDMA technology.
|
||||
|
||||
%files rocmgdr
|
||||
%dir %{_libdir}/ucx
|
||||
%{_libdir}/ucx/libuct_rocm_gdr.so.*
|
||||
%endif
|
||||
%endif
|
||||
@ -278,6 +279,7 @@ Summary: UCX Gemini/Aries transport support.
|
||||
Provides Gemini/Aries transport for UCX.
|
||||
|
||||
%files ugni
|
||||
%dir %{_libdir}/ucx
|
||||
%{_libdir}/ucx/libuct_ugni.so.*
|
||||
%endif
|
||||
|
||||
@ -291,6 +293,7 @@ Provides XPMEM transport for UCX. XPMEM is a Linux kernel module that enables a
|
||||
process to map the memory of another process into its virtual address space.
|
||||
|
||||
%files xpmem
|
||||
%dir %{_libdir}/ucx
|
||||
%{_libdir}/ucx/libuct_xpmem.so.*
|
||||
%endif
|
||||
|
||||
@ -308,51 +311,94 @@ library internals, protocol objects, transports status, and more.
|
||||
%{_bindir}/ucx_vfs
|
||||
%endif
|
||||
|
||||
%if %{with mlx5}
|
||||
%package ib-mlx5
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
Requires: ucx-ib = %{version}-%{release}
|
||||
Summary: UCX IB MLX5 RDMA provider support
|
||||
Group: System Environment/Libraries
|
||||
|
||||
%description ib-mlx5
|
||||
Provides support for DevX, Direct Verbs and DC transports for Infiniband
|
||||
devices.
|
||||
|
||||
%files ib-mlx5
|
||||
%{_libdir}/ucx/libuct_ib_mlx5.so.*
|
||||
%endif
|
||||
|
||||
%if %{with mad}
|
||||
%package mad
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
Summary: UCX Infiniband MAD support
|
||||
Group: System Environment/Libraries
|
||||
|
||||
%description mad
|
||||
Provide Infiniband MAD support for UCX. Enables running perftest using
|
||||
Infiniband datagrams for out-of-band communications.
|
||||
|
||||
%files mad
|
||||
%{_libdir}/ucx/libucx_perftest_mad.so.*
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Wed Jul 09 2025 Kamal Heib <kheib@redhat.com> - 1.18.1-1
|
||||
- Update to upstream release 1.18.1
|
||||
- Resolves: RHEL-94447
|
||||
|
||||
* Wed Nov 06 2024 Kamal Heib <kheib@redhat.com> - 1.17.0-2
|
||||
- Fix build for ppc64le
|
||||
- Resolves: RHEL-52883
|
||||
|
||||
* Wed Nov 06 2024 Kamal Heib <kheib@redhat.com> - 1.17.0-1
|
||||
- Update to upstream release 1.17.0
|
||||
- Resolves: RHEL-52883
|
||||
|
||||
* Wed May 01 2024 Kamal Heib <kheib@redhat.com> - 1.16.0-1
|
||||
- Update to upstream release 1.16.0
|
||||
- Resolves: RHEL-24468, RHEL-31249
|
||||
|
||||
* Thu Nov 09 2023 Kamal Heib <kheib@redhat.com> - 1.15.0-2
|
||||
- Fix requirement error
|
||||
- Resolves: RHEL-932
|
||||
- Resolves: RHEL-888
|
||||
|
||||
* Tue Nov 07 2023 Kamal Heib <kheib@redhat.com> - 1.15.0-1
|
||||
- Update to upstream release 1.15.0
|
||||
- Resolves: RHEL-932
|
||||
- Resolves: RHEL-888
|
||||
|
||||
* Wed Jun 07 2023 Kamal Heib <kheib@redhat.com> - 1.14.1-1.1
|
||||
- Fix rpmdeps issue.
|
||||
- Resolves: rhbz#2170072
|
||||
- Resolves: rhbz#2170369
|
||||
|
||||
* Fri Jun 02 2023 Kamal Heib <kheib@redhat.com> - 1.14.1-1
|
||||
- Update to upstream release 1.14.1
|
||||
- Add gating tests
|
||||
- Resolves: rhbz#2170072
|
||||
- Resolves: rhbz#2170369
|
||||
|
||||
* Wed Feb 08 2023 Michal Schmidt <mschmidt@redhat.com> - 1.13.1-2
|
||||
* Thu Feb 02 2023 Michal Schmidt <mschmidt@redhat.com> - 1.13.1-2
|
||||
- Update to upstream release 1.13.1
|
||||
- Resolves: rhbz#2112958
|
||||
- Resolves: rhbz#2166780
|
||||
|
||||
* Wed Aug 17 2022 Michal Schmidt <mschmidt@redhat.com> - 1.13.0-1
|
||||
* Wed Aug 03 2022 Michal Schmidt <mschmidt@redhat.com> - 1.13.0-1
|
||||
- Update to upstream release 1.13.0
|
||||
- Resolves: rhbz#2049529
|
||||
- Resolves: rhbz#2049557
|
||||
|
||||
* Thu Nov 18 2021 Honggang Li <honli@redhat.com> - 1.11.2-2
|
||||
- TOOLS/INFO: Update help message for context features
|
||||
- Resolves: rhbz#1973959
|
||||
- Related: rhbz#1991185
|
||||
|
||||
* Tue Nov 09 2021 Honggang Li <honli@redhat.com> - 1.11.2-1
|
||||
* Mon Nov 01 2021 Honggang Li <honli@redhat.com> - 1.11.2-1
|
||||
- Bump version to 1.11.2
|
||||
- Resolves: rhbz#1982204
|
||||
- Related: rhbz#2015402
|
||||
|
||||
* Thu May 27 2021 Yurii Shestakov <yuriis@nvidia.com> 1.10.1-2
|
||||
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 1.10.1-3
|
||||
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||
Related: rhbz#1991688
|
||||
|
||||
* Mon Jul 12 2021 Honggang Li <honli@redhat.com> - 1.10.1-2
|
||||
- Bump version to 1.10.1
|
||||
- Related: rhbz#1858571
|
||||
|
||||
* Mon Apr 26 2021 Yurii Shestakov <yuriis@nvidia.com> 1.10.1-rc1
|
||||
- Bump version to 1.10.1-rc1
|
||||
|
||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Wed Nov 11 2020 Yossi Itigin <yosefe@mellanox.com> 1.10.0-1
|
||||
- Make the RPM relocatable
|
||||
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.9.0-2
|
||||
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||
|
||||
* Mon Nov 2 2020 Orion Poplawski <orion@nwra.com> - 1.9.0-1
|
||||
- Update to 1.9.0
|
||||
|
||||
Loading…
Reference in New Issue
Block a user