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
The OpenCL CTS already tests for this, but I think the spec also needs to be adjusted there:
CL_INVALID_ARG_VALUE
if the argument is a buffer and arg_value refers to an image object created with cl_mem_flags of CL_MEM_IMMUTABLE_EXT, or
if the argument is an image declared with the read_only qualifier and arg_value refers to an image object created with cl_mem_flags of CL_MEM_WRITE_ONLY, or
if the image argument is declared with the write_only qualifier and arg_value refers to an image object created with cl_mem_flags of CL_MEM_READ_ONLY or CL_MEM_IMMUTABLE_EXT.
Anything I'm missing there (should probably have created a PR directly...)?