summaryrefslogtreecommitdiff
path: root/test/routines/level3
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2016-06-18 20:20:13 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2016-06-18 20:20:13 +0200
commitf726fbdc9fef937fbe32222f0e66aac8d7e2678c (patch)
treecb62cc877ea239052fb1882f7bf327aace3e7776 /test/routines/level3
parentbacb5d2bb2ea7b141034878090aca850db8f9d00 (diff)
Moved all headers into the source tree, changed headers to .hpp extension
Diffstat (limited to 'test/routines/level3')
-rw-r--r--test/routines/level3/xgemm.hpp (renamed from test/routines/level3/xgemm.h)4
-rw-r--r--test/routines/level3/xhemm.hpp (renamed from test/routines/level3/xhemm.h)4
-rw-r--r--test/routines/level3/xher2k.hpp (renamed from test/routines/level3/xher2k.h)4
-rw-r--r--test/routines/level3/xherk.hpp (renamed from test/routines/level3/xherk.h)4
-rw-r--r--test/routines/level3/xsymm.hpp (renamed from test/routines/level3/xsymm.h)4
-rw-r--r--test/routines/level3/xsyr2k.hpp (renamed from test/routines/level3/xsyr2k.h)4
-rw-r--r--test/routines/level3/xsyrk.hpp (renamed from test/routines/level3/xsyrk.h)4
-rw-r--r--test/routines/level3/xtrmm.hpp (renamed from test/routines/level3/xtrmm.h)4
8 files changed, 16 insertions, 16 deletions
diff --git a/test/routines/level3/xgemm.h b/test/routines/level3/xgemm.hpp
index 842dae93..5f9bea81 100644
--- a/test/routines/level3/xgemm.h
+++ b/test/routines/level3/xgemm.hpp
@@ -20,10 +20,10 @@
#include <string>
#ifdef CLBLAST_REF_CLBLAS
- #include "wrapper_clblas.h"
+ #include "test/wrapper_clblas.hpp"
#endif
#ifdef CLBLAST_REF_CBLAS
- #include "wrapper_cblas.h"
+ #include "test/wrapper_cblas.hpp"
#endif
namespace clblast {
diff --git a/test/routines/level3/xhemm.h b/test/routines/level3/xhemm.hpp
index 106b99ff..8c44be25 100644
--- a/test/routines/level3/xhemm.h
+++ b/test/routines/level3/xhemm.hpp
@@ -20,10 +20,10 @@
#include <string>
#ifdef CLBLAST_REF_CLBLAS
- #include "wrapper_clblas.h"
+ #include "test/wrapper_clblas.hpp"
#endif
#ifdef CLBLAST_REF_CBLAS
- #include "wrapper_cblas.h"
+ #include "test/wrapper_cblas.hpp"
#endif
namespace clblast {
diff --git a/test/routines/level3/xher2k.h b/test/routines/level3/xher2k.hpp
index e2f4448f..fd20bbb5 100644
--- a/test/routines/level3/xher2k.h
+++ b/test/routines/level3/xher2k.hpp
@@ -20,10 +20,10 @@
#include <string>
#ifdef CLBLAST_REF_CLBLAS
- #include "wrapper_clblas.h"
+ #include "test/wrapper_clblas.hpp"
#endif
#ifdef CLBLAST_REF_CBLAS
- #include "wrapper_cblas.h"
+ #include "test/wrapper_cblas.hpp"
#endif
namespace clblast {
diff --git a/test/routines/level3/xherk.h b/test/routines/level3/xherk.hpp
index 43d7cfcd..12990d39 100644
--- a/test/routines/level3/xherk.h
+++ b/test/routines/level3/xherk.hpp
@@ -20,10 +20,10 @@
#include <string>
#ifdef CLBLAST_REF_CLBLAS
- #include "wrapper_clblas.h"
+ #include "test/wrapper_clblas.hpp"
#endif
#ifdef CLBLAST_REF_CBLAS
- #include "wrapper_cblas.h"
+ #include "test/wrapper_cblas.hpp"
#endif
namespace clblast {
diff --git a/test/routines/level3/xsymm.h b/test/routines/level3/xsymm.hpp
index c32b4cf7..f8e90927 100644
--- a/test/routines/level3/xsymm.h
+++ b/test/routines/level3/xsymm.hpp
@@ -20,10 +20,10 @@
#include <string>
#ifdef CLBLAST_REF_CLBLAS
- #include "wrapper_clblas.h"
+ #include "test/wrapper_clblas.hpp"
#endif
#ifdef CLBLAST_REF_CBLAS
- #include "wrapper_cblas.h"
+ #include "test/wrapper_cblas.hpp"
#endif
namespace clblast {
diff --git a/test/routines/level3/xsyr2k.h b/test/routines/level3/xsyr2k.hpp
index 57c3c203..4e4ba0b7 100644
--- a/test/routines/level3/xsyr2k.h
+++ b/test/routines/level3/xsyr2k.hpp
@@ -20,10 +20,10 @@
#include <string>
#ifdef CLBLAST_REF_CLBLAS
- #include "wrapper_clblas.h"
+ #include "test/wrapper_clblas.hpp"
#endif
#ifdef CLBLAST_REF_CBLAS
- #include "wrapper_cblas.h"
+ #include "test/wrapper_cblas.hpp"
#endif
namespace clblast {
diff --git a/test/routines/level3/xsyrk.h b/test/routines/level3/xsyrk.hpp
index 6c3a3786..f5509c88 100644
--- a/test/routines/level3/xsyrk.h
+++ b/test/routines/level3/xsyrk.hpp
@@ -20,10 +20,10 @@
#include <string>
#ifdef CLBLAST_REF_CLBLAS
- #include "wrapper_clblas.h"
+ #include "test/wrapper_clblas.hpp"
#endif
#ifdef CLBLAST_REF_CBLAS
- #include "wrapper_cblas.h"
+ #include "test/wrapper_cblas.hpp"
#endif
namespace clblast {
diff --git a/test/routines/level3/xtrmm.h b/test/routines/level3/xtrmm.hpp
index 3eb63030..45e17e45 100644
--- a/test/routines/level3/xtrmm.h
+++ b/test/routines/level3/xtrmm.hpp
@@ -20,10 +20,10 @@
#include <string>
#ifdef CLBLAST_REF_CLBLAS
- #include "wrapper_clblas.h"
+ #include "test/wrapper_clblas.hpp"
#endif
#ifdef CLBLAST_REF_CBLAS
- #include "wrapper_cblas.h"
+ #include "test/wrapper_cblas.hpp"
#endif
namespace clblast {