aboutsummaryrefslogtreecommitdiff
path: root/compute_kernel_writer/src/cl/CLTensorArgument.h
diff options
context:
space:
mode:
Diffstat (limited to 'compute_kernel_writer/src/cl/CLTensorArgument.h')
-rw-r--r--compute_kernel_writer/src/cl/CLTensorArgument.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/compute_kernel_writer/src/cl/CLTensorArgument.h b/compute_kernel_writer/src/cl/CLTensorArgument.h
index 4cbbee21ee..35df51422e 100644
--- a/compute_kernel_writer/src/cl/CLTensorArgument.h
+++ b/compute_kernel_writer/src/cl/CLTensorArgument.h
@@ -26,7 +26,9 @@
#include "ckw/types/TensorComponentType.h"
#include "ckw/types/TensorStorageType.h"
+
#include "src/ITensor.h"
+
#include <memory>
#include <string>
#include <vector>
@@ -67,7 +69,7 @@ public:
* unlike @ref CLTensorComponent::component which is for the public API and only returns
* a reference to a generic @ref ITile object.
*/
- CLTensorComponent& cl_component(TensorComponentType component_type);
+ CLTensorComponent &cl_component(TensorComponentType component_type);
// Inherited method overridden
TensorStorageVariable &storage(TensorStorageType x) override;
@@ -78,7 +80,7 @@ public:
private:
std::string create_storage_name(TensorStorageType x) const;
- bool _return_dims_by_value{ false };
+ bool _return_dims_by_value{false};
std::vector<TensorStorageVariable> _storages_used{};
std::vector<std::unique_ptr<CLTensorComponent>> _components_used{};
};