-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Modernize the use of AllocationRecord * Add basic support for block transfers via local_deep_copy * Replace use of std::pair in favor of Kokkos::pair * Changes project name from KokkosRemote to KokkosRemoteSpaces * Improve error handling when allocating * Make range API use open end index * Several minor changes throughout the code --------- Co-authored-by: Brian Kelley <bmkelle@sandia.gov>
- Loading branch information
1 parent
86505cb
commit 3594488
Showing
79 changed files
with
4,756 additions
and
1,702 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
add_subdirectory(poissonaccess) | ||
add_subdirectory(misslatency) | ||
add_subdirectory(randomaccess) | ||
add_subdirectory(stream) | ||
add_subdirectory(access_overhead) |
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,7 @@ | ||
FILE(GLOB SRCS *.cpp) | ||
|
||
foreach(file ${SRCS}) | ||
get_filename_component(test_name ${file} NAME_WE) | ||
add_executable(${test_name} ${file}) | ||
target_link_libraries(${test_name} PRIVATE Kokkos::kokkosremotespaces) | ||
endforeach() |
Oops, something went wrong.