I’m trying to implement a NDArray(like the NDArray of MXNet) by TVM, I found that the python methods “tvm.contrib.cblas,matmul” and “tvm.contrib.cublas,matmul” could implement matrix multiplying, but there is not “tvm.contrib.clblast,matmul” for OpenCL.
The contrib library is mainly used to get a baseline comparison instead of being directly used. We can directly implement the matrix multiplication using topi which supports opencl