Enable openmpi for RHEL

Resolves: RHEL-65277
This commit is contained in:
Pavel Simovec 2024-11-25 10:07:49 +01:00
parent ceb1499e7d
commit 9192e56314

View File

@ -1,6 +1,5 @@
%if %{defined rhel} %if %{defined rhel}
%bcond_with mpich %bcond_with mpich
%bcond_with openmpi
%else %else
# TODO check later if we can enable mpich on s390x # TODO check later if we can enable mpich on s390x
%ifarch s390 s390x %ifarch s390 s390x
@ -9,6 +8,11 @@
%bcond_without mpich %bcond_without mpich
%endif %endif
%endif %endif
%ifarch s390 s390x
%bcond_with openmpi
%else
%bcond_without openmpi
%endif
%if %{with mpich} %if %{with mpich}
%global mpi_list %{?mpi_list} mpich %global mpi_list %{?mpi_list} mpich
%endif %endif
@ -18,7 +22,7 @@
Name: fftw Name: fftw
Version: 3.3.10 Version: 3.3.10
Release: 14%{?dist} Release: 15%{?dist}
Summary: A Fast Fourier Transform library Summary: A Fast Fourier Transform library
# Generally, the code is under GPL but some headers are also under MIT or BSD: # Generally, the code is under GPL but some headers are also under MIT or BSD:
License: GPL-2.0-or-later AND MIT AND BSD-2-Clause License: GPL-2.0-or-later AND MIT AND BSD-2-Clause
@ -538,6 +542,10 @@ done
%endif %endif
%changelog %changelog
* Mon Nov 25 2024 Pavel Simovec <psimovec@redhat.com> - 3.3.10-15
- Enable openmpi for RHEL
- Resolves: RHEL-65277
* Mon Nov 18 2024 Pavel Simovec <psimovec@redhat.com> - 3.3.10-14 * Mon Nov 18 2024 Pavel Simovec <psimovec@redhat.com> - 3.3.10-14
- Re-enable openmpi for s390x - Re-enable openmpi for s390x
- Resolves: RHEL-65277 - Resolves: RHEL-65277