| 108 | } |
| 109 | |
| 110 | Status CLGEMM::validate(const ITensorInfo *a, |
| 111 | const ITensorInfo *b, |
| 112 | const ITensorInfo *c, |
| 113 | const ITensorInfo *output, |
| 114 | float alpha, |
| 115 | float beta, |
| 116 | const GEMMInfo &gemm_info) |
| 117 | { |
| 118 | ARM_COMPUTE_RETURN_ERROR_ON_DYNAMIC_SHAPE(a, b, c, output); |
| 119 | return OperatorType::validate(a, b, c, output, alpha, beta, gemm_info); |
| 120 | } |
| 121 | |
| 122 | void CLGEMM::run() |
| 123 | { |
no test coverage detected