summaryrefslogtreecommitdiff
path: root/src/kernel_preprocessor.hpp
blob: 81873b4fff537b1b5e4b408d3766b4019bc9717f (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
// =================================================================================================
// 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 the a simple pre-processor for the OpenCL kernels. This pre-processor is used
// in cases where the vendor's OpenCL compiler falls short in loop unrolling and array-to-register
// promotion. This pre-processor is specific for the CLBlast code making many assumptions.
//
// =================================================================================================

#ifndef CLBLAST_KERNEL_PREPROCESSOR_H_
#define CLBLAST_KERNEL_PREPROCESSOR_H_

#include <string>

#include "utilities/utilities.hpp"

namespace clblast {
// =================================================================================================

std::string PreprocessKernelSource(const std::string& kernel_source);

// =================================================================================================
} // namespace clblast

// CLBLAST_KERNEL_PREPROCESSOR_H_
#endif