Skip to content
Failed

Changes

Summary

  1. Cuda: Fix nvcc warnings (commit: e899550) (details)
  2. Fix quotation marks in CXX flags (commit: 726a8f2) (details)
  3. Fix kokkos_swap (commit: 1876867) (details)
  4. Fix array size (commit: d0d99bd) (details)
  5. Fix gtest (commit: 13447c4) (details)
  6. Fix .jenkins whitespce (commit: 5906cba) (details)
  7. Only use -Werror all-warnings with explicit nvcc_wrapper (commit: 9d1842e) (details)
  8. Fix dangling reference (commit: 0e88744) (details)
  9. Suppress 'long double' is treated as 'double' in device code (commit: 2a15c75) (details)
  10. Use -Xcudafe --diag_suppress=20208 for 11.6 build; nothing else seems to help (commit: 5b0d945) (details)
  11. Try moving pragma suppress to tests (commit: 1625ec2) (details)
  12. Use -Xcudafe --diag_suppress=20208 in Makefile build (commit: 2c3fd02) (details)
  13. Restrict to_array subtest to NVCC >= 11.4.0 (commit: 5d09838) (details)
  14. [ci skip] Use ROCM 6.1 in the nightly CI and disable one test (commit: 7c4f2b4) (details)
  15. Switch to using functors in sort_by_key_via_sort (#7059) (commit: 043f873) (details)
The file was modified .jenkins (diff)
Commit 726a8f29631083ff85b2945c76230d23e272d24d by Daniel Arndt
Fix quotation marks in CXX flags
(commit: 726a8f2)
The file was modified .jenkins (diff)
The file was modified core/unit_test/TestArray.cpp (diff)
The file was modified core/unit_test/TestArray.cpp (diff)
The file was modified tpls/gtest/gtest/gtest.h (diff)
The file was modified .jenkins (diff)
Commit 9d1842e71173866cbb94556ea70de0683c5e186a by Daniel Arndt
Only use -Werror all-warnings with explicit nvcc_wrapper
(commit: 9d1842e)
The file was modified .jenkins (diff)
The file was modified core/src/Cuda/Kokkos_Cuda.hpp (diff)
Commit 2a15c75c26e8699842d17accae40ab91ec8065dd by Daniel Arndt
Suppress 'long double' is treated as 'double' in device code
(commit: 2a15c75)
The file was modified core/src/Kokkos_NumericTraits.hpp (diff)
The file was modified core/src/Kokkos_Complex.hpp (diff)
Commit 5b0d94518c37262b87db4d427364cb29f4653cf5 by Daniel Arndt
Use -Xcudafe --diag_suppress=20208 for 11.6 build; nothing else seems to help
(commit: 5b0d945)
The file was modified .jenkins (diff)
Commit 1625ec210d8fd63c241347583a180571075c24fd by Daniel Arndt
Try moving pragma suppress to tests
(commit: 1625ec2)
The file was modified core/src/Kokkos_NumericTraits.hpp (diff)
The file was modified core/unit_test/TestNumericTraits.hpp (diff)
The file was modified core/unit_test/TestComplex.hpp (diff)
The file was modified core/src/Kokkos_Complex.hpp (diff)
Commit 2c3fd02aa251fb44b48929ee5296a4841c6f4700 by Daniel Arndt
Use -Xcudafe --diag_suppress=20208 in Makefile build
(commit: 2c3fd02)
The file was modified .jenkins (diff)
Commit 5d09838236a0977260314afe93e93c5e2fc50d45 by Daniel Arndt
Restrict to_array subtest to NVCC >= 11.4.0
(commit: 5d09838)
The file was modified core/unit_test/TestArray.cpp (diff)
Commit 7c4f2b40a59c5802fae3c43434cf0df8757228b9 by Bruno Turcksin
[ci skip] Use ROCM 6.1 in the nightly CI and disable one test
(commit: 7c4f2b4)
The file was modified .jenkins_nightly (diff)
Commit 043f87304529849a9cd14ff20acf15457cf9b4fb by noreply
Switch to using functors in sort_by_key_via_sort (#7059)

* Add test for #7036

* Switch to using functors inside function with variadic templates

Otherwise, get errors like
impl/Kokkos_SortByKeyImpl.hpp:210:578: error: could not convert
    ‘& sort_by_key_via_sort<Kokkos::Serial, int*, Kokkos::Serial, float*, Kokkos::Serial>’
    from ‘<unresolved overloaded function type>’
    to ‘void (*)(const Kokkos::Serial&, const Kokkos::View<int*, Kokkos::Serial>&, const Kokkos::View<float*, Kokkos::Serial>&)’
  210 |   Kokkos::parallel_for(

* Update comment
(commit: 043f873)
The file was modified algorithms/unit_tests/TestSortByKey.hpp (diff)
The file was modified algorithms/src/sorting/impl/Kokkos_SortByKeyImpl.hpp (diff)