From f726fbdc9fef937fbe32222f0e66aac8d7e2678c Mon Sep 17 00:00:00 2001 From: Cedric Nugteren Date: Sat, 18 Jun 2016 20:20:13 +0200 Subject: Moved all headers into the source tree, changed headers to .hpp extension --- test/correctness/routines/level1/xamax.cc | 4 ++-- test/correctness/routines/level1/xasum.cc | 4 ++-- test/correctness/routines/level1/xaxpy.cc | 4 ++-- test/correctness/routines/level1/xcopy.cc | 4 ++-- test/correctness/routines/level1/xdot.cc | 4 ++-- test/correctness/routines/level1/xdotc.cc | 4 ++-- test/correctness/routines/level1/xdotu.cc | 4 ++-- test/correctness/routines/level1/xnrm2.cc | 4 ++-- test/correctness/routines/level1/xrot.cc | 4 ++-- test/correctness/routines/level1/xrotg.cc | 4 ++-- test/correctness/routines/level1/xrotm.cc | 4 ++-- test/correctness/routines/level1/xrotmg.cc | 4 ++-- test/correctness/routines/level1/xscal.cc | 4 ++-- test/correctness/routines/level1/xswap.cc | 4 ++-- 14 files changed, 28 insertions(+), 28 deletions(-) (limited to 'test/correctness/routines/level1') diff --git a/test/correctness/routines/level1/xamax.cc b/test/correctness/routines/level1/xamax.cc index 21400a40..607637e8 100644 --- a/test/correctness/routines/level1/xamax.cc +++ b/test/correctness/routines/level1/xamax.cc @@ -9,8 +9,8 @@ // // ================================================================================================= -#include "correctness/testblas.h" -#include "routines/level1/xamax.h" +#include "test/correctness/testblas.hpp" +#include "test/routines/level1/xamax.hpp" // Shortcuts to the clblast namespace using float2 = clblast::float2; diff --git a/test/correctness/routines/level1/xasum.cc b/test/correctness/routines/level1/xasum.cc index f48d1d4b..e22e42a6 100644 --- a/test/correctness/routines/level1/xasum.cc +++ b/test/correctness/routines/level1/xasum.cc @@ -9,8 +9,8 @@ // // ================================================================================================= -#include "correctness/testblas.h" -#include "routines/level1/xasum.h" +#include "test/correctness/testblas.hpp" +#include "test/routines/level1/xasum.hpp" // Shortcuts to the clblast namespace using float2 = clblast::float2; diff --git a/test/correctness/routines/level1/xaxpy.cc b/test/correctness/routines/level1/xaxpy.cc index 85649a04..064172fa 100644 --- a/test/correctness/routines/level1/xaxpy.cc +++ b/test/correctness/routines/level1/xaxpy.cc @@ -9,8 +9,8 @@ // // ================================================================================================= -#include "correctness/testblas.h" -#include "routines/level1/xaxpy.h" +#include "test/correctness/testblas.hpp" +#include "test/routines/level1/xaxpy.hpp" // Shortcuts to the clblast namespace using float2 = clblast::float2; diff --git a/test/correctness/routines/level1/xcopy.cc b/test/correctness/routines/level1/xcopy.cc index b89baabf..e6f2581b 100644 --- a/test/correctness/routines/level1/xcopy.cc +++ b/test/correctness/routines/level1/xcopy.cc @@ -9,8 +9,8 @@ // // ================================================================================================= -#include "correctness/testblas.h" -#include "routines/level1/xcopy.h" +#include "test/correctness/testblas.hpp" +#include "test/routines/level1/xcopy.hpp" // Shortcuts to the clblast namespace using float2 = clblast::float2; diff --git a/test/correctness/routines/level1/xdot.cc b/test/correctness/routines/level1/xdot.cc index 3a353e2e..080250cb 100644 --- a/test/correctness/routines/level1/xdot.cc +++ b/test/correctness/routines/level1/xdot.cc @@ -9,8 +9,8 @@ // // ================================================================================================= -#include "correctness/testblas.h" -#include "routines/level1/xdot.h" +#include "test/correctness/testblas.hpp" +#include "test/routines/level1/xdot.hpp" // Shortcuts to the clblast namespace using float2 = clblast::float2; diff --git a/test/correctness/routines/level1/xdotc.cc b/test/correctness/routines/level1/xdotc.cc index 195b0847..2a7bbeca 100644 --- a/test/correctness/routines/level1/xdotc.cc +++ b/test/correctness/routines/level1/xdotc.cc @@ -9,8 +9,8 @@ // // ================================================================================================= -#include "correctness/testblas.h" -#include "routines/level1/xdotc.h" +#include "test/correctness/testblas.hpp" +#include "test/routines/level1/xdotc.hpp" // Shortcuts to the clblast namespace using float2 = clblast::float2; diff --git a/test/correctness/routines/level1/xdotu.cc b/test/correctness/routines/level1/xdotu.cc index 7a501052..1047d021 100644 --- a/test/correctness/routines/level1/xdotu.cc +++ b/test/correctness/routines/level1/xdotu.cc @@ -9,8 +9,8 @@ // // ================================================================================================= -#include "correctness/testblas.h" -#include "routines/level1/xdotu.h" +#include "test/correctness/testblas.hpp" +#include "test/routines/level1/xdotu.hpp" // Shortcuts to the clblast namespace using float2 = clblast::float2; diff --git a/test/correctness/routines/level1/xnrm2.cc b/test/correctness/routines/level1/xnrm2.cc index 02ea57cb..142fa7ba 100644 --- a/test/correctness/routines/level1/xnrm2.cc +++ b/test/correctness/routines/level1/xnrm2.cc @@ -9,8 +9,8 @@ // // ================================================================================================= -#include "correctness/testblas.h" -#include "routines/level1/xnrm2.h" +#include "test/correctness/testblas.hpp" +#include "test/routines/level1/xnrm2.hpp" // Shortcuts to the clblast namespace using float2 = clblast::float2; diff --git a/test/correctness/routines/level1/xrot.cc b/test/correctness/routines/level1/xrot.cc index 8ffcd6af..5af358eb 100644 --- a/test/correctness/routines/level1/xrot.cc +++ b/test/correctness/routines/level1/xrot.cc @@ -9,8 +9,8 @@ // // ================================================================================================= -#include "correctness/testblas.h" -#include "routines/level1/xrot.h" +#include "test/correctness/testblas.hpp" +#include "test/routines/level1/xrot.hpp" // Shortcuts to the clblast namespace using float2 = clblast::float2; diff --git a/test/correctness/routines/level1/xrotg.cc b/test/correctness/routines/level1/xrotg.cc index c8480673..ad23a554 100644 --- a/test/correctness/routines/level1/xrotg.cc +++ b/test/correctness/routines/level1/xrotg.cc @@ -9,8 +9,8 @@ // // ================================================================================================= -#include "correctness/testblas.h" -#include "routines/level1/xrotg.h" +#include "test/correctness/testblas.hpp" +#include "test/routines/level1/xrotg.hpp" // Shortcuts to the clblast namespace using float2 = clblast::float2; diff --git a/test/correctness/routines/level1/xrotm.cc b/test/correctness/routines/level1/xrotm.cc index 196e0de9..4f7e8f15 100644 --- a/test/correctness/routines/level1/xrotm.cc +++ b/test/correctness/routines/level1/xrotm.cc @@ -9,8 +9,8 @@ // // ================================================================================================= -#include "correctness/testblas.h" -#include "routines/level1/xrotm.h" +#include "test/correctness/testblas.hpp" +#include "test/routines/level1/xrotm.hpp" // Shortcuts to the clblast namespace using float2 = clblast::float2; diff --git a/test/correctness/routines/level1/xrotmg.cc b/test/correctness/routines/level1/xrotmg.cc index e4dd712b..ca89bc12 100644 --- a/test/correctness/routines/level1/xrotmg.cc +++ b/test/correctness/routines/level1/xrotmg.cc @@ -9,8 +9,8 @@ // // ================================================================================================= -#include "correctness/testblas.h" -#include "routines/level1/xrotmg.h" +#include "test/correctness/testblas.hpp" +#include "test/routines/level1/xrotmg.hpp" // Shortcuts to the clblast namespace using float2 = clblast::float2; diff --git a/test/correctness/routines/level1/xscal.cc b/test/correctness/routines/level1/xscal.cc index a3de54b0..939524be 100644 --- a/test/correctness/routines/level1/xscal.cc +++ b/test/correctness/routines/level1/xscal.cc @@ -9,8 +9,8 @@ // // ================================================================================================= -#include "correctness/testblas.h" -#include "routines/level1/xscal.h" +#include "test/correctness/testblas.hpp" +#include "test/routines/level1/xscal.hpp" // Shortcuts to the clblast namespace using float2 = clblast::float2; diff --git a/test/correctness/routines/level1/xswap.cc b/test/correctness/routines/level1/xswap.cc index dab60669..446f3d65 100644 --- a/test/correctness/routines/level1/xswap.cc +++ b/test/correctness/routines/level1/xswap.cc @@ -9,8 +9,8 @@ // // ================================================================================================= -#include "correctness/testblas.h" -#include "routines/level1/xswap.h" +#include "test/correctness/testblas.hpp" +#include "test/routines/level1/xswap.hpp" // Shortcuts to the clblast namespace using float2 = clblast::float2; -- cgit v1.2.3