Compare commits
36 Commits
epel8-play
...
rawhide
Author | SHA1 | Date | |
---|---|---|---|
|
72bb4138b6 | ||
|
89619cd3ef | ||
|
f1b73f0c6e | ||
|
0ac2a03f96 | ||
|
5f06778bc9 | ||
|
033e935e98 | ||
|
686467e806 | ||
|
be14ffaef0 | ||
|
3e765d8efd | ||
|
6e70885b85 | ||
|
0cc35d3bf0 | ||
|
a7293c1016 | ||
|
c33685d720 | ||
|
6b3737f1a8 | ||
|
a276212b9f | ||
|
a24954c602 | ||
|
575de12f71 | ||
|
438acffb40 | ||
|
d40cce347c | ||
|
05f194cd9f | ||
|
fbe972da4c | ||
|
02e84592ae | ||
|
286eb5a62c | ||
|
a5d7582563 | ||
|
71f3d624a7 | ||
|
06e5d34cdb | ||
|
dc8c95df67 | ||
|
d619d373d5 | ||
|
3274106267 | ||
|
e39b3bed0f | ||
|
1b877244c1 | ||
|
a9ad303a89 | ||
|
719ea0f1bd | ||
|
a2fe5ee2a6 | ||
|
924fddaa89 | ||
|
7ddf3a5c92 |
19
.gitignore
vendored
Normal file
19
.gitignore
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
/kokkos-*/
|
||||
/kokkos-d93e239baee253fca66b8b7f2196edaa40a2ef17.tar.gz
|
||||
/kokkos-445c17625fe6dcfa8ddf98046301a648550c5738.tar.gz
|
||||
/kokkos-6619d83a6d682ee83eabc7d23cf051d0ff77ff61.tar.gz
|
||||
/kokkos-cb90e9484286b8728d821bb5b1c23e74373bc47b.tar.gz
|
||||
/kokkos-e79d6b7311fb91c81477a7fc458ca5408e0c19d2.tar.gz
|
||||
/kokkos-3.0.00.tar.gz
|
||||
/kokkos-3.1.00.tar.gz
|
||||
/kokkos-3.1.01.tar.gz
|
||||
/kokkos-3.2.00.tar.gz
|
||||
/kokkos-3.2.01.tar.gz
|
||||
/kokkos-3.3.00.tar.gz
|
||||
/kokkos-3.3.01.tar.gz
|
||||
/kokkos-3.4.00.tar.gz
|
||||
/kokkos-3.4.01.tar.gz
|
||||
/kokkos-3.5.00.tar.gz
|
||||
/kokkos-3.6.00.tar.gz
|
||||
/kokkos-3.6.01.tar.gz
|
||||
/kokkos-3.7.00.tar.gz
|
@ -1 +0,0 @@
|
||||
epel8-playground decommissioned : https://pagure.io/epel/issue/136
|
170
kokkos.spec
Normal file
170
kokkos.spec
Normal file
@ -0,0 +1,170 @@
|
||||
# Needed for EPEL8
|
||||
%undefine __cmake_in_source_build
|
||||
|
||||
Name: kokkos
|
||||
Version: 3.7.00
|
||||
%global sover 3.7
|
||||
Release: 1%{?dist}
|
||||
Summary: Kokkos C++ Performance Portability Programming
|
||||
# no support for 32-bit archs https://github.com/kokkos/kokkos/issues/2312
|
||||
ExcludeArch: i686 armv7hl
|
||||
|
||||
License: BSD
|
||||
URL: https://github.com/kokkos/kokkos
|
||||
Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz
|
||||
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: cmake >= 3.16
|
||||
BuildRequires: hwloc-devel
|
||||
|
||||
%global kokkos_desc \
|
||||
Kokkos Core implements a programming model in C++ for writing performance \
|
||||
portable applications targeting all major HPC platforms. For that purpose \
|
||||
it provides abstractions for both parallel execution of code and data \
|
||||
management. Kokkos is designed to target complex node architectures with \
|
||||
N-level memory hierarchies and multiple types of execution resources. It \
|
||||
currently can use OpenMP, Pthreads and CUDA as backend programming models.
|
||||
|
||||
%description
|
||||
%{kokkos_desc}
|
||||
|
||||
%package devel
|
||||
Summary: Development package for %{name} packages
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
Requires: hwloc-devel
|
||||
%description devel
|
||||
%{kokkos_desc}
|
||||
|
||||
This package contains the development files of %{name}.
|
||||
|
||||
%prep
|
||||
%autosetup -p1
|
||||
|
||||
%build
|
||||
%cmake \
|
||||
-DKokkos_ENABLE_TESTS=On \
|
||||
%ifarch ppc64le
|
||||
-DKokkos_ARCH_POWER8=ON \
|
||||
%endif
|
||||
-DCMAKE_INSTALL_INCLUDEDIR=include/kokkos \
|
||||
-DKokkos_ENABLE_AGGRESSIVE_VECTORIZATION=ON \
|
||||
-DKokkos_ENABLE_DEPRECATED_CODE=ON \
|
||||
-DKokkos_ENABLE_OPENMP=ON \
|
||||
-DKokkos_ENABLE_SERIAL=ON \
|
||||
-DKokkos_ENABLE_HWLOC=ON \
|
||||
%{nil}
|
||||
%cmake_build
|
||||
|
||||
%install
|
||||
%cmake_install
|
||||
|
||||
%check
|
||||
# https://github.com/kokkos/kokkos/issues/2959 - unstable test
|
||||
%ifarch s390x
|
||||
%global testargs --exclude-regex KokkosCore_UnitTest_StackTraceTest
|
||||
%endif
|
||||
%ctest %{?testargs}
|
||||
|
||||
%files
|
||||
%doc README.md
|
||||
%license LICENSE
|
||||
%{_libdir}/libkokkos*.so.%{sover}*
|
||||
|
||||
%files devel
|
||||
%{_libdir}/libkokkos*.so
|
||||
%{_libdir}/cmake/Kokkos
|
||||
%{_includedir}/kokkos
|
||||
%{_bindir}/nvcc_wrapper
|
||||
%{_bindir}/hpcbind
|
||||
%{_bindir}/kokkos_launch_compiler
|
||||
|
||||
%changelog
|
||||
* Thu Sep 22 2022 Cezary Skrzyński <cezary.skrzynski@ng-analytics.com> - 3.7.00-1
|
||||
- Version bump to v3.7.00 (bug #2128805)
|
||||
|
||||
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.6.01-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Wed Jul 06 2022 Cezary Skrzyński <cezary.skrzynski@ng-analytics.com> - 3.6.01-1
|
||||
- Version bump to v3.6.01 (bug #2103824)
|
||||
|
||||
* Wed Apr 27 2022 Christoph Junghans <junghans@votca.org> - 3.6.00-1
|
||||
- Version bump to v3.6.00 (bug #2026409)
|
||||
|
||||
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.00-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Wed Dec 01 2021 Christoph Junghans <junghans@votca.org> - 3.5.00-1
|
||||
- Version bump to v3.5.00 (bug #2026409)
|
||||
|
||||
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.01-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Tue Jun 22 2021 Christoph Junghans <junghans@votca.org> - 3.4.01-2
|
||||
- Rebuild for glibc (no libdl.so anymore)
|
||||
|
||||
* Fri May 28 2021 Christoph Junghans <junghans@votca.org> - 3.4.01-1
|
||||
- Version bump to v3.4.01 (bug #1965296)
|
||||
|
||||
* Tue Apr 27 2021 Christoph Junghans <junghans@votca.org> - 3.4.00-1
|
||||
- Version bump to v3.4.00 (bug #1953967)
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.01-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Sat Jan 23 08:19:42 MST 2021 Christoph Junghans <junghans@lanl.gov> - 3.3.01-1
|
||||
- Version bump to v3.3.01 (bug #1919508)
|
||||
|
||||
* Sat Dec 19 13:38:32 MST 2020 Christoph Junghans <junghans@votca.org> - 3.3.00-1
|
||||
- Version bump to v3.3.00 (bug #1909362)
|
||||
|
||||
* Wed Nov 25 15:26:40 MST 2020 Christoph Junghans <junghans@votca.org> - 3.2.01-1
|
||||
- Version bump to v3.2.01 (bug #1901667)
|
||||
|
||||
* Tue Aug 25 2020 Christoph Junghans <junghans@votca.org> - 3.2.00-2
|
||||
- Fix cmake targets
|
||||
|
||||
* Tue Aug 25 2020 Christoph Junghans <junghans@votca.org> - 3.2.00-1
|
||||
- Version bump to v3.2.00 (bug #1872456)
|
||||
|
||||
* Mon Aug 03 2020 Christoph Junghans <junghans@votca.org> - 3.1.01-4
|
||||
- Fix out-of-source build on F33 (bug #1863948)
|
||||
|
||||
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.01-3
|
||||
- Second attempt - Rebuilt for
|
||||
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.01-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Wed May 06 2020 Christoph Junghans <junghans@votca.org> - 3.1.01-1
|
||||
- Version bump to v3.1.01 (bug #1824998)
|
||||
- drop 2961.patch - merge upstream
|
||||
|
||||
* Thu Apr 16 2020 Christoph Junghans <junghans@votca.org> - 3.1.00-1
|
||||
- Version bump to v3.1.00 (bug #1824998)
|
||||
|
||||
* Thu Feb 27 2020 Christoph Junghans <junghans@votca.org> - 3.0.00-1
|
||||
- Version bump to 3.0.00
|
||||
|
||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.0-0.3.20200107gite79d6b7.1
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Wed Jan 15 2020 Christoph Junghans <junghans@votca.org> - 3.0.0-0.2.20200107gite79d6b7.1
|
||||
- Added missing hwloc dep
|
||||
|
||||
* Sun Jan 12 2020 Christoph Junghans <junghans@votca.org> - 3.0.0-0.2.20200107gite79d6b7
|
||||
- bump to latest release candidate snapshot
|
||||
|
||||
* Mon Dec 23 2019 Christoph Junghans <junghans@votca.org> - 3.0.0-0.2.20191219gitcb90e9
|
||||
- bump to latest release candidate snapshot
|
||||
|
||||
* Fri Dec 20 2019 Christoph Junghans <junghans@votca.org> - 3.0.0-0.2.20191216git6619d83
|
||||
- bump to latest snapshot and enable Kokkos_ENABLE_DEPRECATED_CODE
|
||||
- disable StackTrace Unittests
|
||||
|
||||
* Sun Sep 29 2019 Christoph Junghans <junghans@votca.org> - 3.0.0-0.2.20190929git445c176
|
||||
- bump to latest snapshot and enable AGGRESSIVE_VECTORIZATION
|
||||
|
||||
* Wed Sep 18 2019 Christoph Junghans <junghans@votca.org> - 3.0.0-0.1.190912gitd93e239
|
||||
- initial commit (bug #1751409)
|
Loading…
x
Reference in New Issue
Block a user