-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clean up pass for AWS tutorial (#25)
* first clean up pass * fix source file * clean up pass * clean up 4 * clean up pass * clean up pass * clean up 7 * clean up 8 * clean up 09 * clean up 10 * update 10 file * clean up 11 * clean up pass * fix twelve * fix eight * fixes for 08 * clean up pass * clean up 5 and 6 * Update 06_raja_umpire_uvm_solution.cpp * use global thread policies in examples
- Loading branch information
Showing
44 changed files
with
67 additions
and
68 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
blt_add_executable( | ||
NAME one | ||
SOURCES one.cpp) | ||
NAME 01_blt_cmake | ||
SOURCES 01_blt_cmake.cpp) |
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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# TODO: Add the RAJA, umpire and cuda targets as DEPENDS_ON arguments | ||
blt_add_executable( | ||
NAME two | ||
SOURCES two.cpp | ||
NAME 02_raja_umpire | ||
SOURCES 02_raja_umpire.cpp | ||
DEPENDS_ON ) |
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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
blt_add_executable( | ||
NAME three | ||
SOURCES three.cpp | ||
NAME 03_umpire_allocator | ||
SOURCES 03_umpire_allocator.cpp | ||
DEPENDS_ON RAJA umpire cuda) |
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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
blt_add_executable( | ||
NAME four | ||
SOURCES four.cpp | ||
NAME 04_raja_forall | ||
SOURCES 04_raja_forall.cpp | ||
DEPENDS_ON RAJA umpire cuda) |
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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
blt_add_executable( | ||
NAME five | ||
SOURCES five.cpp | ||
NAME 05_raja_reduce | ||
SOURCES 05_raja_reduce.cpp | ||
DEPENDS_ON RAJA umpire) |
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
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
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
if (ENABLE_CUDA) | ||
blt_add_executable( | ||
NAME six | ||
SOURCES six.cpp | ||
NAME 06_raja_umpire_uvm | ||
SOURCES 06_raja_umpire_uvm.cpp | ||
DEPENDS_ON RAJA umpire cuda) | ||
endif() | ||
|
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
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
Intro_Tutorial/lessons/07_raja_umpire_host_device/CMakeLists.txt
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
if (ENABLE_CUDA) | ||
blt_add_executable( | ||
NAME seven | ||
SOURCES seven.cpp | ||
NAME 07_raja_umpire_host_device | ||
SOURCES 07_raja_umpire_host_device.cpp | ||
DEPENDS_ON RAJA umpire cuda) | ||
endif() |
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
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
Intro_Tutorial/lessons/08_raja_umpire_quick_pool/CMakeLists.txt
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
if (ENABLE_CUDA) | ||
blt_add_executable( | ||
NAME eight | ||
SOURCES eight.cpp | ||
NAME 08_raja_umpire_quick_pool | ||
SOURCES 08_raja_umpire_quick_pool.cpp | ||
DEPENDS_ON RAJA umpire cuda) | ||
endif() |
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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
blt_add_executable( | ||
NAME nine | ||
SOURCES nine.cpp | ||
NAME 09_raja_view | ||
SOURCES 09_raja_view.cpp | ||
DEPENDS_ON cuda RAJA umpire) |
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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
blt_add_executable( | ||
NAME ten | ||
SOURCES ten.cpp | ||
NAME 10_raja_kernel | ||
SOURCES 10_raja_kernel.cpp | ||
DEPENDS_ON cuda RAJA umpire) |
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
if (ENABLE_CUDA) | ||
blt_add_executable( | ||
NAME eleven | ||
SOURCES eleven.cpp | ||
NAME 11_raja_device_kernel | ||
SOURCES 11_raja_device_kernel.cpp | ||
DEPENDS_ON RAJA umpire cuda) | ||
endif() |
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
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
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
4 changes: 2 additions & 2 deletions
4
Intro_Tutorial/lessons/12_raja_device_kernel_complete/CMakeLists.txt
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
if (ENABLE_CUDA) | ||
blt_add_executable( | ||
NAME twelve | ||
SOURCES twelve.cpp | ||
NAME 12_raja_device_kernel_complete | ||
SOURCES 12_raja_device_kernel_complete.cpp | ||
DEPENDS_ON RAJA umpire cuda) | ||
endif() |