MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / gemm_fallback

Function gemm_fallback

src/backend/opencl/blas.cpp:51–55  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

49
50template<typename T>
51void gemm_fallback(Array<T> &out, af_mat_prop optLhs, af_mat_prop optRhs,
52 const T *alpha, const Array<T> &lhs, const Array<T> &rhs,
53 const T *beta) {
54 cpu::gemm(out, optLhs, optRhs, alpha, lhs, rhs, beta);
55}
56
57template<>
58void gemm_fallback<half>(Array<half> & /*out*/, af_mat_prop /*optLhs*/,

Callers 1

gemmFunction · 0.85

Calls 1

gemmFunction · 0.70

Tested by

no test coverage detected