Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Exercises/common.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ else()
FetchContent_Declare(
Kokkos
GIT_REPOSITORY https://github.com/kokkos/kokkos.git
GIT_TAG 4.5.01
GIT_TAG 4.7.00
SOURCE_DIR ${Kokkos_COMMON_SOURCE_DIR}
)
FetchContent_MakeAvailable(Kokkos)
Expand Down
2 changes: 1 addition & 1 deletion Exercises/simd/Begin/simd_begin.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include<Kokkos_Core.hpp>
//EXERCISE: include the right header (later Kokkos will include this)
//#include<simd.hpp>
//#include<Kokkos_SIMD.hpp>

void test_simd(int N_in, int M, int R, double a) {

Expand Down
2 changes: 1 addition & 1 deletion Exercises/simd/Solution/simd_solution.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

void test_simd(int N_in, int M, int R, double a) {

using simd_t = Kokkos::Experimental::native_simd<double>;
using simd_t = Kokkos::Experimental::simd<double>;

int N = N_in/simd_t::size();

Expand Down
Loading