forked from LLNL/Umpire
-
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.
Fixed release with camp updates included from camp's 2024.07.0 release
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule camp
updated
17 files
+1 −0 | .gitignore | |
+1 −1 | CMakeLists.txt | |
+0 −0 | LICENSE | |
+281 −0 | LLVM_LICENSE | |
+2 −1 | azure-pipelines.yml | |
+292 −0 | include/camp/array.hpp | |
+40 −2 | include/camp/resource.hpp | |
+22 −2 | include/camp/resource/cuda.hpp | |
+22 −2 | include/camp/resource/hip.hpp | |
+20 −0 | include/camp/resource/host.hpp | |
+19 −0 | include/camp/resource/omp_target.hpp | |
+21 −0 | include/camp/resource/sycl.hpp | |
+0 −2 | include/camp/tuple.hpp | |
+7 −5 | test/CMakeLists.txt | |
+128 −0 | test/Test.hpp | |
+403 −0 | test/array.cpp | |
+48 −0 | test/resource.cpp |