Please support CLBlast, thank you!

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.

CLBlast:

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

Thank you for your answer, I will give it a try.