summaryrefslogtreecommitdiff
path: root/src/routines/levelx/xinvert.cpp
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2017-12-23 13:34:57 +0100
committerCedric Nugteren <web@cedricnugteren.nl>2017-12-23 13:34:57 +0100
commitaa7db4f987360fe1956add9391c6e81aa61b75f3 (patch)
tree71411054266ebfa87d514bbb5235f80323b24af9 /src/routines/levelx/xinvert.cpp
parent2b007450b99fbbc198f0688c9f75ae5e09ffe4fa (diff)
Added TRSV block-size tuner
Diffstat (limited to 'src/routines/levelx/xinvert.cpp')
-rw-r--r--src/routines/levelx/xinvert.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/routines/levelx/xinvert.cpp b/src/routines/levelx/xinvert.cpp
index 5c21d5ce..5fbc5fe5 100644
--- a/src/routines/levelx/xinvert.cpp
+++ b/src/routines/levelx/xinvert.cpp
@@ -27,8 +27,9 @@ namespace clblast {
template <typename T>
Xinvert<T>::Xinvert(Queue &queue, EventPointer event, const std::string &name):
Routine(queue, event, name, {"Invert"}, PrecisionValue<T>(), {}, {
- #include "../../kernels/level3/level3.opencl"
- #include "../../kernels/level3/invert_diagonal_blocks.opencl"
+ #include "../../kernels/level3/level3.opencl"
+ , // separated in multiple parts to prevent C1091 in MSVC 2013
+ #include "../../kernels/level3/invert_diagonal_blocks.opencl"
}) {
}