forked from kokkos/kokkos-tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Renamed exercises {09,10} -> {simd,simd_warp}
- Loading branch information
Showing
16 changed files
with
24 additions
and
32 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
cmake_minimum_required (VERSION 3.10) | ||
project (KokkosTutorialSIMD) | ||
include(../../common.cmake) | ||
|
||
add_executable(SIMD simd_begin.cpp) | ||
target_link_libraries(SIMD Kokkos::kokkos) |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
cmake_minimum_required (VERSION 3.10) | ||
project (KokkosTutorialSIMD) | ||
include(../../common.cmake) | ||
|
||
add_executable(SIMD simd_solution.cpp) | ||
target_link_libraries(SIMD Kokkos::kokkos) |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
cmake_minimum_required (VERSION 3.10) | ||
project (KokkosTutorialSIMDWarp) | ||
include(../../common.cmake) | ||
|
||
add_executable(SIMDWarp simd_warp_begin.cpp) | ||
target_link_libraries(SIMDWarp Kokkos::kokkos) |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
cmake_minimum_required (VERSION 3.10) | ||
project (KokkosTutorialSIMDWarp) | ||
include(../../common.cmake) | ||
|
||
add_executable(SIMDWarp simd_warp_solution.cpp) | ||
target_link_libraries(SIMDWarp Kokkos::kokkos) |
File renamed without changes.
File renamed without changes.