Open mzuzek opened 3 years ago
Follows #9 (part): tests with complex numbers to verify C/H modes.
C
H
std::complex seems not to be supported by Kokkos::atomic_add() (several instances in _sparse/impl/KokkosSparse_spmv_impl_blockcrs.hpp) because of missing copy-constructor with volatile modifier (e.g. only Kokkos::complex is used to test Kokkos atomic ops in _unittest/TestAtomics.hpp).
std::complex
Kokkos::atomic_add()
volatile
Kokkos::complex
Follows #9 (part): tests with complex numbers to verify
C
/H
modes.std::complex
seems not to be supported byKokkos::atomic_add()
(several instances in _sparse/impl/KokkosSparse_spmv_impl_blockcrs.hpp) because of missing copy-constructor withvolatile
modifier (e.g. onlyKokkos::complex
is used to test Kokkos atomic ops in _unittest/TestAtomics.hpp).