You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm getting this error on Oclgrind 21.10 with rather simple kernels, e.g. this one:
__kernel void mainzisegred_nonseg_6074(int n_6034, int num_threads_6087, __global int *segred_tmp_mem_6085)
{
int global_tid_6088 = get_global_id(0);
int x_acc_6097 = 0;
for (int i_6102 = 0; i_6102 < n_6034; i_6102++) {
x_acc_6097 = x_acc_6097 + get_global_id(0) + num_threads_6087 * i_6102;
}
segred_tmp_mem_6085[0] = x_acc_6097;
}
This is a contrived kernel derived from a much larger example. Interestingly, the original kernel triggered a complaint about the constant being 9 bytes.
I'm not sure whether this is a compatibility problem with the wrong version of LLVM. It happens with the Oclgrind packaged in Ubuntu 21.04, but I am not sure which LLVM it is linked against.
The text was updated successfully, but these errors were encountered:
I'm getting this error on Oclgrind 21.10 with rather simple kernels, e.g. this one:
This is a contrived kernel derived from a much larger example. Interestingly, the original kernel triggered a complaint about the constant being 9 bytes.
I'm not sure whether this is a compatibility problem with the wrong version of LLVM. It happens with the Oclgrind packaged in Ubuntu 21.04, but I am not sure which LLVM it is linked against.
The text was updated successfully, but these errors were encountered: