We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 27ab572 + 3681c78 commit 0fc3d3fCopy full SHA for 0fc3d3f
3 files changed
.gitignore
@@ -23,3 +23,6 @@
23
24
# vim temp files
25
.*.swp
26
+
27
+src/build/
28
src/library/blas/AutoGemm/AutoGemmTeardown.h
@@ -0,0 +1,10 @@
1
+#pragma once
2
3
+#ifdef __cplusplus
4
+#extern "C" {
5
+#endif
6
+ void initAutoGemmClKernels(void);
7
8
+}
9
10
src/library/blas/init.c
@@ -26,7 +26,7 @@
#include <stdlib.h>
#include <stdio.h>
#ifdef BUILDING_CLBLAS
29
-#include "AutoGemmIncludes/AutoGemmClKernels.h"
+#include "AutoGemmTeardown.h"
30
#endif
31
32
clblasStatus
0 commit comments