summaryrefslogtreecommitdiff
path: root/test/routines/common.hpp
blob: 1abf55284ce39ccc3547d442cf17520ce99cfd35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// =================================================================================================
// This file is part of the CLBlast project. The project is licensed under Apache Version 2.0. This
// project loosely follows the Google C++ styleguide and uses a tab-size of two spaces and a max-
// width of 100 characters per line.
//
// Author(s):
//   Cedric Nugteren <www.cedricnugteren.nl>
//
// This file contains all the common includes for the clients and tests
//
// =================================================================================================

#ifndef CLBLAST_TEST_ROUTINES_COMMON_H_
#define CLBLAST_TEST_ROUTINES_COMMON_H_

#include <vector>
#include <string>

#include "utilities/utilities.hpp"

#ifdef CLBLAST_REF_CLBLAS
  #include "test/wrapper_clblas.hpp"
#endif
#ifdef CLBLAST_REF_CBLAS
  #include "test/wrapper_cblas.hpp"
#endif
#ifdef CLBLAST_REF_CUBLAS
  #include "test/wrapper_cuda.hpp"
#endif

// =================================================================================================

// CLBLAST_TEST_ROUTINES_COMMON_H_
#endif