forked from pool/libfabric
- Update to 1.14.1 - Core - Use non-shared memory allocations to use MADV_DONTFORK safely - Fix incorrect use of gdr_copy_from_mapping - Ensure proper timeout time for pollfds to avoid early exit - EFA - Handle read completion properly for multi_recv - Use shm's inject write when possible - Support 0 byte read - RxM - Ensure signaling the CQ fd after writing completion - Fix inject path for sending tagged messages with cq data - Negotiate credit based flow control support over CM - Add PID to CM messages to detect stale vs duplicate connections - Fix race handling unexpected messages from unknown peers - Fix possible leak of stack data in cm_accept - Restrict reported caps based on core provider - Delay starting listen until endpoint fully initialized - Verify valid atomic size - Sockets - Fix coverity reports on uninitialized data - Check for NULL pointers passed to memcpy - Add missing error return code from sock_ep_enable - TCP - Fix performance regression resulting from sparse pollfd sets - Fix assertion failure in CQ progress function - Do not generate error completions for inject msgs - Fix use of incorrect event names in progress handler - Fix check for CQ data in tagged messages - Make start_op array a static to reduce memory OBS-URL: https://build.opensuse.org/request/show/971079 OBS-URL: https://build.opensuse.org/package/show/science:HPC/libfabric?expand=0&rev=69
64 lines
1.7 KiB
RPMSpec
64 lines
1.7 KiB
RPMSpec
#
|
|
# spec file for package fabtests
|
|
#
|
|
# Copyright (c) 2022 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define git_ver .0.e800ff281fdb
|
|
|
|
Name: fabtests
|
|
Version: 1.14.1
|
|
Release: 0
|
|
Summary: Test suite for libfabric API
|
|
License: BSD-2-Clause OR GPL-2.0-only
|
|
Group: Development/Tools/Other
|
|
URL: http://www.github.com/ofiwg/libfabric
|
|
Source: libfabric-%{version}%{git_ver}.tar.bz2
|
|
Source1: fabtests-rpmlintrc
|
|
BuildRequires: autoconf
|
|
BuildRequires: automake
|
|
BuildRequires: libfabric-devel = %{version}
|
|
BuildRequires: libtool
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
Fabtests provides a set of examples that uses libfabric, a fabric software library.
|
|
|
|
%prep
|
|
%setup -q -n libfabric-%{version}%{git_ver}
|
|
|
|
%build
|
|
cd fabtests
|
|
./autogen.sh
|
|
%configure %{?_with_libfabric}
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
%make_install -C fabtests
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%dir %{_datadir}/fabtests/
|
|
|
|
%{_bindir}/*
|
|
%{_mandir}/man1/*
|
|
%{_mandir}/man7/*
|
|
%{_datadir}/fabtests/*
|
|
|
|
%doc AUTHORS README NEWS.md
|
|
%license COPYING
|
|
|
|
%changelog
|