aboutsummaryrefslogtreecommitdiff
path: root/compute_kernel_writer/src/cl/CLKernelWriter.h
diff options
context:
space:
mode:
authorGunes Bayir <gunes.bayir@arm.com>2023-08-23 23:28:31 +0100
committerGunes Bayir <gunes.bayir@arm.com>2023-08-29 11:07:48 +0000
commit806b8e856911e6691ede6725c7e2a0e7e0dd6e95 (patch)
tree2430af238e9494a1b7012b05a3b49b2eef548cd2 /compute_kernel_writer/src/cl/CLKernelWriter.h
parentb7aefd71d07d56b001e795410700cae71a518eca (diff)
downloadComputeLibrary-806b8e856911e6691ede6725c7e2a0e7e0dd6e95.tar.gz
Add declare_constant_tile API function in CKW
Resolves: COMPMID-6535 Change-Id: I07d8aca96a0fcbd624f828b24513ee0500a14a74 Signed-off-by: Gunes Bayir <gunes.bayir@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/10200 Reviewed-by: Viet-Hoa Do <viet-hoa.do@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com> Benchmark: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'compute_kernel_writer/src/cl/CLKernelWriter.h')
-rw-r--r--compute_kernel_writer/src/cl/CLKernelWriter.h15
1 files changed, 13 insertions, 2 deletions
diff --git a/compute_kernel_writer/src/cl/CLKernelWriter.h b/compute_kernel_writer/src/cl/CLKernelWriter.h
index 2a6b79c691..d2c84f192e 100644
--- a/compute_kernel_writer/src/cl/CLKernelWriter.h
+++ b/compute_kernel_writer/src/cl/CLKernelWriter.h
@@ -29,17 +29,21 @@
#include <memory>
#include <set>
+#include <string>
#include <utility>
namespace ckw
{
+// Forward Declarations
class CLTile;
class CLTensorArgument;
+class ConstantData;
+class TensorOperand;
class TensorSampler;
class TileOperand;
-class TensorOperand;
+enum class DataType;
enum class MemoryOperation;
/** OpenCL kernel writer. */
@@ -96,6 +100,12 @@ public:
*/
TileOperand declare_tile(const std::string &name, const TileInfo &tile_info) override;
+ /** Declare a constant tile given a @ref:ConstantData object
+ *
+ * Similar to @ref KernelWriter::declare_constant_tile()
+ */
+ TileOperand declare_constant_tile(const ConstantData &data) override;
+
// =============================================================================================
// Memory Operations
// =============================================================================================
@@ -139,7 +149,7 @@ protected:
*
* This function performs appropriate check before doing type casting.
*/
- const CLTile &to_cl_tile(const TileOperand &operand);
+ const CLTile &to_cl_tile(const TileOperand &operand) const;
/** Append the specified code to the kernel body source code. */
template <typename T, typename... TArgs>
@@ -179,6 +189,7 @@ private:
std::set<std::unique_ptr<CLTensorArgument>> _tensors{};
std::set<std::unique_ptr<CLTile>> _tiles{};
+ std::set<std::unique_ptr<CLTile>> _constant_tiles{};
};
} // namespace ckw