Hello everyone, Curious if anyone got this running on Mac M1?
have you managed to run in?
Somebody would have to compile a backend for M1. Currently binaries and BLAS/LAPACK backends only support x86/64, OpenCL, and CUDA
Hello folks. I'm experimenting with OpenCL and ClojureCL for the first time. My kernel has 2 long params and a writable buffer but when I call
(set-arg! kernel 0 12341234)
I get "OpenCL error: CL_INVALID_ARG_VALUE." Can someone suggest how I should set a long param?Kernel declaration starts
__kernel void my_kernel(long seed, long range, __global uchar* buf) {
Thanks in advance.