nn-testing/src/mat.cl

12 lines
213 B
Common Lisp
Raw Normal View History

typedef struct __attribute__ ((packed)) {
} cl_GPUMat;
void amogus() {
printf("HEllo world!");
}
__kernel void mat_multiply(__global float *nnWeights, __global float *inputs, __global float *c) {
amogus();
}