87 lines
2.4 KiB
RPMSpec
87 lines
2.4 KiB
RPMSpec
Name: pmix
|
|
Version: 1.1.3
|
|
Release: 1%{?dist}
|
|
Summary: Exascale version of PMI
|
|
|
|
License: BSD
|
|
URL: https://www.open-mpi.org/projects/pmix/
|
|
Source0: https://raw.githubusercontent.com/pmix/tarballs/master/pmix-%{version}.tar.bz2
|
|
|
|
BuildRequires: cyrus-sasl-devel
|
|
BuildRequires: hwloc-devel
|
|
BuildRequires: libevent-devel
|
|
BuildRequires: munge-devel
|
|
|
|
%description
|
|
The Process Management Interface (PMI) has been used for quite some time as
|
|
a means of exchanging wireup information needed for interprocess
|
|
communication. Two versions (PMI-1 and PMI-2) have been released as part of
|
|
the MPICH effort. While PMI-2 demonstrates better scaling properties than its
|
|
PMI-1 predecessor, attaining rapid launch and wireup of the roughly 1M
|
|
processes executing across 100k nodes expected for exascale operations remains
|
|
challenging.
|
|
|
|
PMI Exascale (PMIx) represents an attempt to resolve these questions by
|
|
providing an extended version of the PMI standard specifically designed to
|
|
support clusters up to and including exascale sizes. The overall objective of
|
|
the project is not to branch the existing pseudo-standard definitions - in
|
|
fact, PMIx fully supports both of the existing PMI-1 and PMI-2 APIs - but
|
|
rather to (a) augment and extend those APIs to eliminate some current
|
|
restrictions that impact scalability, and (b) provide a reference
|
|
implementation of the PMI-server that demonstrates the desired level of
|
|
scalability.
|
|
|
|
|
|
%package devel
|
|
Summary: Development files for %{name}
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
%description devel
|
|
The %{name}-devel package contains libraries and header files for
|
|
developing applications that use %{name}.
|
|
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
|
|
%build
|
|
%configure --disable-static --disable-silent-rules --with-sasl
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
%install
|
|
%make_install
|
|
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
%files
|
|
%license LICENSE
|
|
%doc README
|
|
%{_libdir}/*.so.2*
|
|
%{_datadir}/pmix/
|
|
|
|
%files devel
|
|
%{_includedir}/*
|
|
%{_libdir}/*.so
|
|
%{_mandir}/man[37]/*
|
|
|
|
|
|
%changelog
|
|
* Tue Mar 8 2016 Orion Poplawski <orion@cora.nwra.com> - 1.1.3-1
|
|
- Update to 1.1.3
|
|
|
|
* Mon Nov 16 2015 Orion Poplawski <orion@cora.nwra.com> - 1.1.1-1
|
|
- Update to 1.1.1
|
|
|
|
* Sat Nov 14 2015 Orion Poplawski <orion@cora.nwra.com> - 1.1.0-1
|
|
- Update to 1.1.0
|
|
|
|
* Tue Sep 1 2015 Orion Poplawski <orion@cora.nwra.com> - 1.0.0-1
|
|
- Initial version
|