-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule mateval
updated
21 files
+3 −2 | CMakeLists.txt | |
+1 −1 | README.md | |
+1 −0 | include/mateval/common.hpp | |
+14 −1 | include/mateval/cuda/comparison.hpp | |
+1 −1 | include/mateval/cuda/latms.hpp | |
+1 −1 | include/mateval/cuda/minmax.hpp | |
+14 −0 | include/mateval/cuda/norm.hpp | |
+1 −2 | include/mateval/cuda/utils.hpp | |
+32 −0 | include/mateval/norm.hpp | |
+149 −20 | src/comparison_cuda.cu | |
+1 −1 | src/latms_cuda.cu | |
+1 −1 | src/minmax_cuda.cu | |
+56 −0 | src/norm_cuda.cu | |
+1 −1 | tests/Makefile | |
+185 −97 | tests/cuda.cu | |
+1 −1 | tests/cuda_latms.cu | |
+40 −0 | tests/cuda_norm.cu | |
+1 −1 | tests/cuda_operation.cu | |
+1 −1 | tests/cuda_throughput.cu | |
+35 −0 | tests/norm.cpp | |
+12 −0 | tests/quad.cpp |