chundoong-lab-ta/SHPC2023/hw4/matmul/kernel.cl

4 lines
126 B
Common Lisp
Raw Normal View History

2023-06-17 01:55:02 +09:00
__kernel void sgemm(__global float *A, __global float *B, __global float *C, int M, int N, int K) {
// TODO: FILL_IN_HERE
}