24 #ifndef ARM_COMPUTE_CLGEMM_H 25 #define ARM_COMPUTE_CLGEMM_H 39 class CLCompileContext;
52 CLGEMM(std::shared_ptr<IMemoryManager> memory_manager =
nullptr,
IWeightsManager *weights_manager =
nullptr);
113 std::unique_ptr<Impl> _impl;
void prepare() override
Prepare the function for executing.
Base class for all functions.
~CLGEMM()
Default destructor.
void run() override
Run the kernels contained in the function.
CLGEMM(std::shared_ptr< IMemoryManager > memory_manager=nullptr, IWeightsManager *weights_manager=nullptr)
Default constructor.
Store the tensor's metadata.
CLGEMM & operator=(const CLGEMM &)=delete
Prevent instances of this class from being copied (As this class contains pointers) ...
Copyright (c) 2017-2022 Arm Limited.
void configure(const CLCompileContext &compile_context, const ICLTensor *a, const ICLTensor *b, const ICLTensor *c, ICLTensor *output, float alpha, float beta, const GEMMInfo &gemm_info=GEMMInfo())
Initialise the kernel's inputs and output.
Basic function to execute GEMM on OpenCL.
Weights manager interface to handle weights transformations.
Interface for OpenCL tensor.
static Status validate(const ITensorInfo *a, const ITensorInfo *b, const ITensorInfo *c, const ITensorInfo *output, float alpha, float beta, const GEMMInfo &gemm_info=GEMMInfo())
Static function to check if given info will lead to a valid configuration of CLGEMM.