12 lines
213 B
Common Lisp
12 lines
213 B
Common Lisp
|
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();
|
||
|
}
|