uncomplicate

Ngoc Khuat 2022-01-24T16:44:48.000700Z

Hello everyone, Curious if anyone got this running on Mac M1?

🤔 1
Dumch 2022-03-08T16:09:29.908179Z

have you managed to run in?

2022-03-09T20:02:46.706539Z

Somebody would have to compile a backend for M1. Currently binaries and BLAS/LAPACK backends only support x86/64, OpenCL, and CUDA

sirwobin 2022-01-24T18:06:37.003Z

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?

sirwobin 2022-01-24T18:07:50.004Z

Kernel declaration starts

__kernel void my_kernel(long  seed, long range, __global uchar* buf) {

sirwobin 2022-01-24T18:08:05.004200Z

Thanks in advance.