aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/kernels/CpuMulKernel.h
diff options
context:
space:
mode:
authorViet-Hoa Do <viet-hoa.do@arm.com>2022-09-09 15:39:05 +0100
committerViet-Hoa Do <viet-hoa.do@arm.com>2022-09-14 17:04:27 +0000
commit0d05b6690fe69c57f63ca43d59b551f074613062 (patch)
tree497965914895a34035399a12d9e325518454a31b /src/cpu/kernels/CpuMulKernel.h
parent5687e55250613417c151864cb74229fc91ea6462 (diff)
downloadComputeLibrary-0d05b6690fe69c57f63ca43d59b551f074613062.tar.gz
Interpreting tensor as 1D for CPU multiplication
* Also fix a bug in mul_U8_U8_U8. Resolves: COMPMID-5460 Signed-off-by: Viet-Hoa Do <viet-hoa.do@arm.com> Change-Id: Ie1edafeae7aaad91164caeeb04661a8974a7fc1b Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/8244 Reviewed-by: SiCong Li <sicong.li@arm.com> Reviewed-by: Gunes Bayir <gunes.bayir@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 'src/cpu/kernels/CpuMulKernel.h')
-rw-r--r--src/cpu/kernels/CpuMulKernel.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/cpu/kernels/CpuMulKernel.h b/src/cpu/kernels/CpuMulKernel.h
index 85fcf88a96..5727b9d012 100644
--- a/src/cpu/kernels/CpuMulKernel.h
+++ b/src/cpu/kernels/CpuMulKernel.h
@@ -80,6 +80,15 @@ public:
void run_op(ITensorPack &tensors, const Window &window, const ThreadInfo &info) override;
const char *name() const override;
+ /** Get the preferred dimension in which the scheduler splits the work into multiple jobs.
+ *
+ * @return The split dimension hint.
+ */
+ size_t get_split_dimension_hint() const
+ {
+ return _split_dimension;
+ }
+
private:
/** Common signature for all the specialised multiplication functions with integer scaling factor
*
@@ -115,6 +124,7 @@ private:
MulFunctionQuantized *_func_quantized{ nullptr };
float _scale{ 0 };
int _scale_exponent{ 0 };
+ size_t _split_dimension{ Window::DimY };
};
/** Interface for the complex pixelwise multiplication kernel. */