We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents aed97d8 + 58602eb commit a81a7d0Copy full SHA for a81a7d0
Source/jitifyer/GB_macrofy_name.c
@@ -26,6 +26,10 @@
26
//
27
// namespace__kname__012345_72__suffix
28
// namespace__kname__012345_72
29
+//
30
+// where kname also always prefaced with the string "cuda_". The filename
31
+// suffix (.c for CPU kernels, or .cu for CUDA kernels) is part of the
32
+// kernel_name.
33
34
#include "GB.h"
35
#include "jitifyer/GB_stringify.h"
@@ -61,7 +65,7 @@ void GB_macrofy_name
61
65
}
62
66
else
63
67
{
64
- // kernel uses at least one built-in types and/or operator
68
+ // kernel uses at least one user-defined type and/or operator
69
#if defined ( GRAPHBLAS_HAS_CUDA )
70
if (encoding->kcode >= GB_JIT_CUDA_KERNEL)
71
0 commit comments