Skip to content

Commit 63ec7df

Browse files
Merge pull request #437 from DrTimothyAldenDavis/dev2
GraphBLAS 10.3.0: performance improvements
2 parents 85a8bcb + b4123e3 commit 63ec7df

File tree

142 files changed

+1854
-1405
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

142 files changed

+1854
-1405
lines changed

CMakeLists.txt

Lines changed: 173 additions & 45 deletions
Large diffs are not rendered by default.

CUDA/CMakeLists.txt

Lines changed: 0 additions & 158 deletions
This file was deleted.

CUDA/Config/GraphBLAS_CUDA.pc.in

Lines changed: 0 additions & 17 deletions
This file was deleted.

CUDA/Config/GraphBLAS_CUDAConfig.cmake.in

Lines changed: 0 additions & 139 deletions
This file was deleted.
File renamed without changes.

CUDA/GB_cuda_apply_bind1st_jit.cpp renamed to CUDA/apply/GB_cuda_apply_bind1st_jit.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "GB_cuda_apply.hpp"
1+
#include "apply/GB_cuda_apply.hpp"
22

33
extern "C"
44
{

CUDA/GB_cuda_apply_bind2nd_jit.cpp renamed to CUDA/apply/GB_cuda_apply_bind2nd_jit.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "GB_cuda_apply.hpp"
1+
#include "apply/GB_cuda_apply.hpp"
22

33
extern "C"
44
{

CUDA/GB_cuda_apply_binop.cpp renamed to CUDA/apply/GB_cuda_apply_binop.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "GB_cuda_apply.hpp"
1+
#include "apply/GB_cuda_apply.hpp"
22

33
#undef GB_FREE_WORKSPACE
44
#define GB_FREE_WORKSPACE \
@@ -10,7 +10,7 @@
1010
#define GB_FREE_ALL \
1111
{ \
1212
GB_FREE_WORKSPACE ; \
13-
GB_cuda_stream_pool_release (&stream) ; \
13+
GB_cuda_stream_pool_release (&stream) ; \
1414
}
1515

1616
#define BLOCK_SIZE 512
File renamed without changes.

CUDA/GB_cuda_apply_unop.cpp renamed to CUDA/apply/GB_cuda_apply_unop.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "GB_cuda_apply.hpp"
1+
#include "apply/GB_cuda_apply.hpp"
22

33
#undef GB_FREE_WORKSPACE
44
#define GB_FREE_WORKSPACE \
@@ -10,7 +10,7 @@
1010
#define GB_FREE_ALL \
1111
{ \
1212
GB_FREE_WORKSPACE \
13-
GB_cuda_stream_pool_release (&stream) ; \
13+
GB_cuda_stream_pool_release (&stream) ; \
1414
}
1515

1616
#define BLOCK_SIZE 512

0 commit comments

Comments
 (0)