| 62 | CLGEMM::~CLGEMM() = default; |
| 63 | |
| 64 | void CLGEMM::configure(const ICLTensor *a, |
| 65 | const ICLTensor *b, |
| 66 | const ICLTensor *c, |
| 67 | ICLTensor *output, |
| 68 | float alpha, |
| 69 | float beta, |
| 70 | const GEMMInfo &gemm_info) |
| 71 | { |
| 72 | configure(CLKernelLibrary::get().get_compile_context(), a, b, c, output, alpha, beta, gemm_info); |
| 73 | } |
| 74 | |
| 75 | void CLGEMM::configure(const CLCompileContext &compile_context, |
| 76 | const ICLTensor *a, |
no test coverage detected