Home
last modified time | relevance | path

Searched refs:CpuGemmLowpMatrixAReductionKernel (Results 1 – 6 of 6) sorted by relevance

/aosp_15_r20/external/ComputeLibrary/arm_compute/runtime/NEON/functions/
H A DNEQLSTMLayer.h52 class CpuGemmLowpMatrixAReductionKernel; variable
272 std::unique_ptr<cpu::kernels::CpuGemmLowpMatrixAReductionKernel> _input_to_input_reduction;
273 std::unique_ptr<cpu::kernels::CpuGemmLowpMatrixAReductionKernel> _recurrent_to_input_reduction;
274 std::unique_ptr<cpu::kernels::CpuGemmLowpMatrixAReductionKernel> _input_to_forget_reduction;
275 std::unique_ptr<cpu::kernels::CpuGemmLowpMatrixAReductionKernel> _recurrent_to_forget_reduction;
276 std::unique_ptr<cpu::kernels::CpuGemmLowpMatrixAReductionKernel> _input_to_cell_reduction;
277 std::unique_ptr<cpu::kernels::CpuGemmLowpMatrixAReductionKernel> _recurrent_to_cell_reduction;
278 std::unique_ptr<cpu::kernels::CpuGemmLowpMatrixAReductionKernel> _input_to_output_reduction;
279 std::unique_ptr<cpu::kernels::CpuGemmLowpMatrixAReductionKernel> _recurrent_to_output_reduction;
280 std::unique_ptr<cpu::kernels::CpuGemmLowpMatrixAReductionKernel> _projection_reduction;
/aosp_15_r20/external/ComputeLibrary/src/cpu/kernels/
H A DCpuGemmLowpMatrixReductionKernel.h43 class CpuGemmLowpMatrixAReductionKernel : public ICpuKernel<CpuGemmLowpMatrixAReductionKernel>
47 CpuGemmLowpMatrixAReductionKernel() = default;
48 ARM_COMPUTE_DISALLOW_COPY_ALLOW_MOVE(CpuGemmLowpMatrixAReductionKernel);
88 …using CpuGemmLowpMatrixAReductionKernelPtr = void (CpuGemmLowpMatrixAReductionKernel::*)(const ITe…
H A DCpuGemmLowpMatrixReductionKernel.cpp71 void CpuGemmLowpMatrixAReductionKernel::configure(const ITensorInfo *src, ITensorInfo *dst, const G… in configure()
83 _func = &CpuGemmLowpMatrixAReductionKernel::run_internal<uint8_t>; in configure()
88 _func = &CpuGemmLowpMatrixAReductionKernel::run_internal<int8_t>; in configure()
101 Status CpuGemmLowpMatrixAReductionKernel::validate(const ITensorInfo *src, const ITensorInfo *dst, … in validate()
108 void CpuGemmLowpMatrixAReductionKernel::run_internal(const ITensor *src, ITensor *dst, const arm_co… in run_internal()
175 void CpuGemmLowpMatrixAReductionKernel::run_op(ITensorPack &tensors, const Window &window, const Th… in run_op()
187 const char *CpuGemmLowpMatrixAReductionKernel::name() const in name()
/aosp_15_r20/external/ComputeLibrary/src/runtime/NEON/functions/
H A DNEQLSTMLayer.cpp324 …input_to_input_reduction = std::make_unique<cpu::kernels::CpuGemmLowpMatrixAReductionKernel>(); in configure()
325 …recurrent_to_input_reduction = std::make_unique<cpu::kernels::CpuGemmLowpMatrixAReductionKernel>(); in configure()
330 …nput_to_forget_reduction = std::make_unique<cpu::kernels::CpuGemmLowpMatrixAReductionKernel>(); in configure()
331 …ecurrent_to_forget_reduction = std::make_unique<cpu::kernels::CpuGemmLowpMatrixAReductionKernel>(); in configure()
332 …nput_to_cell_reduction = std::make_unique<cpu::kernels::CpuGemmLowpMatrixAReductionKernel>(); in configure()
333 …ecurrent_to_cell_reduction = std::make_unique<cpu::kernels::CpuGemmLowpMatrixAReductionKernel>(); in configure()
334 …nput_to_output_reduction = std::make_unique<cpu::kernels::CpuGemmLowpMatrixAReductionKernel>(); in configure()
335 …ecurrent_to_output_reduction = std::make_unique<cpu::kernels::CpuGemmLowpMatrixAReductionKernel>(); in configure()
345 _projection_reduction = std::make_unique<cpu::kernels::CpuGemmLowpMatrixAReductionKernel>(); in configure()
768 …ARM_COMPUTE_RETURN_ON_ERROR(cpu::kernels::CpuGemmLowpMatrixAReductionKernel::validate(lstm_params.… in validate()
[all …]
/aosp_15_r20/external/ComputeLibrary/src/cpu/operators/
H A DCpuGemmLowpMatrixMultiplyCore.h43 class CpuGemmLowpMatrixAReductionKernel; variable
143 … std::unique_ptr<kernels::CpuGemmLowpMatrixAReductionKernel> _mtx_a_reduction_kernel;
H A DCpuGemmLowpMatrixMultiplyCore.cpp238 … _mtx_a_reduction_kernel = std::make_unique<kernels::CpuGemmLowpMatrixAReductionKernel>(); in configure()
456 …ARM_COMPUTE_RETURN_ON_ERROR(kernels::CpuGemmLowpMatrixAReductionKernel::validate(a_to_use, &info_v… in validate()