aboutsummaryrefslogtreecommitdiff
path: root/compute_kernel_writer/src/cl
diff options
context:
space:
mode:
Diffstat (limited to 'compute_kernel_writer/src/cl')
-rw-r--r--compute_kernel_writer/src/cl/CLConstantTile.h8
-rw-r--r--compute_kernel_writer/src/cl/CLHelpers.cpp2
-rw-r--r--compute_kernel_writer/src/cl/CLTile.h8
3 files changed, 9 insertions, 9 deletions
diff --git a/compute_kernel_writer/src/cl/CLConstantTile.h b/compute_kernel_writer/src/cl/CLConstantTile.h
index c8318487e6..658fb63f7f 100644
--- a/compute_kernel_writer/src/cl/CLConstantTile.h
+++ b/compute_kernel_writer/src/cl/CLConstantTile.h
@@ -47,15 +47,15 @@ public:
CLConstantTile(const TileContainer &vals, DataType dt);
// Inherited method overridden
- TileVariable scalar(int32_t row, int32_t col) const override;
+ TileVariable scalar(int32_t row, int32_t col) const override;
- TileVariable vector(int32_t row) const override;
+ TileVariable vector(int32_t row) const override;
- TileVariable vector(int32_t row, int32_t col_start, int32_t width) const override;
+ TileVariable vector(int32_t row, int32_t col_start, int32_t width) const override;
std::vector<TileVariable> all() const override;
- bool is_assignable() const override;
+ bool is_assignable() const override;
private:
TileContainer _vals{};
diff --git a/compute_kernel_writer/src/cl/CLHelpers.cpp b/compute_kernel_writer/src/cl/CLHelpers.cpp
index 68d7db252b..d940a5a529 100644
--- a/compute_kernel_writer/src/cl/CLHelpers.cpp
+++ b/compute_kernel_writer/src/cl/CLHelpers.cpp
@@ -22,7 +22,7 @@
* SOFTWARE.
*/
#include "ckw/Error.h"
-#include "ckw/Types.h"
+#include "ckw/types/DataType.h"
#include "src/cl/CLHelpers.h"
diff --git a/compute_kernel_writer/src/cl/CLTile.h b/compute_kernel_writer/src/cl/CLTile.h
index 039bd5613f..7e69de847b 100644
--- a/compute_kernel_writer/src/cl/CLTile.h
+++ b/compute_kernel_writer/src/cl/CLTile.h
@@ -47,15 +47,15 @@ public:
CLTile(const std::string &name, const TileInfo &info);
// Inherited method overridden
- TileVariable scalar(int32_t row, int32_t col) const override;
+ TileVariable scalar(int32_t row, int32_t col) const override;
- TileVariable vector(int32_t row) const override;
+ TileVariable vector(int32_t row) const override;
- TileVariable vector(int32_t row, int32_t col_start, int32_t width) const override;
+ TileVariable vector(int32_t row, int32_t col_start, int32_t width) const override;
std::vector<TileVariable> all() const override;
- bool is_assignable() const override;
+ bool is_assignable() const override;
private:
std::string create_var_name(int32_t row) const;