Home
last modified time | relevance | path

Searched refs:CpuGemmLowpMatrixBReductionKernel (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/external/ComputeLibrary/src/cpu/kernels/
H A DCpuGemmLowpMatrixReductionKernel.h101 class CpuGemmLowpMatrixBReductionKernel : public ICpuKernel<CpuGemmLowpMatrixBReductionKernel>
105 CpuGemmLowpMatrixBReductionKernel() = default;
106 ARM_COMPUTE_DISALLOW_COPY_ALLOW_MOVE(CpuGemmLowpMatrixBReductionKernel);
147 …using CpuGemmLowpMatrixBReductionKernelPtr = void (CpuGemmLowpMatrixBReductionKernel::*)(const ITe…
H A DCpuGemmLowpMatrixReductionKernel.cpp192 void CpuGemmLowpMatrixBReductionKernel::configure(const ITensorInfo *src, ITensorInfo *dst, const G… in configure()
207 _func = &CpuGemmLowpMatrixBReductionKernel::run_internal<uint8_t>; in configure()
212 _func = &CpuGemmLowpMatrixBReductionKernel::run_internal<int8_t>; in configure()
226 Status CpuGemmLowpMatrixBReductionKernel::validate(const ITensorInfo *src, const ITensorInfo *dst, … in validate()
233 void CpuGemmLowpMatrixBReductionKernel::run_internal(const ITensor *src, ITensor *dst, const Window… in run_internal()
378 void CpuGemmLowpMatrixBReductionKernel::run_op(ITensorPack &tensors, const Window &window, const Th… in run_op()
390 const char *CpuGemmLowpMatrixBReductionKernel::name() const in name()
/aosp_15_r20/external/ComputeLibrary/src/cpu/operators/
H A DCpuGemmLowpMatrixMultiplyCore.h44 class CpuGemmLowpMatrixBReductionKernel; variable
144 … std::unique_ptr<kernels::CpuGemmLowpMatrixBReductionKernel> _mtx_b_reduction_kernel;
H A DCpuGemmLowpMatrixMultiplyCore.cpp228 … _mtx_b_reduction_kernel = std::make_unique<kernels::CpuGemmLowpMatrixBReductionKernel>(); in configure()
447 …ARM_COMPUTE_RETURN_ON_ERROR(kernels::CpuGemmLowpMatrixBReductionKernel::validate(b, &info_vector_s… in validate()