Kokkos lib update
This commit is contained in:
@ -5,7 +5,7 @@ default: build
|
||||
echo "Start Build"
|
||||
|
||||
ifneq (,$(findstring Cuda,$(KOKKOS_DEVICES)))
|
||||
CXX = nvcc_wrapper
|
||||
CXX = ../../../../config/nvcc_wrapper
|
||||
CXXFLAGS = -O3
|
||||
LINK = ${CXX}
|
||||
LINKFLAGS =
|
||||
|
||||
@ -122,7 +122,7 @@ int main(int argc, char* args[]) {
|
||||
Kokkos::DualView<uint64_t*> vals("Vals",size*samples);
|
||||
|
||||
// Run some performance comparisons
|
||||
Kokkos::Impl::Timer timer;
|
||||
Kokkos::Timer timer;
|
||||
Kokkos::parallel_for(size,generate_random<Kokkos::Random_XorShift64_Pool<> >(vals.d_view,rand_pool64,samples));
|
||||
Kokkos::fence();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user