Marcin Hajder
Marcin Hajder
There are few issues in test [test_work_item_functions](https://github.com/KhronosGroup/OpenCL-CTS/blob/main/test_conformance/basic/test_work_item_functions.cpp) I've noticed while working on issue #2005: 1) local work size is always hardcoded to 1 despite it is previously computed. 2) not...
[Description](https://registry.khronos.org/OpenCL/specs/3.0-unified/html/OpenCL_API.html#image-descriptor) of `image_row_pitch` (the same refers to `image_slice_pitch`) seems mutually contradictory. First spec says: `The image_row_pitch must be zero if ... . If image_row_pitch is zero and the image is...
During review of CTS [PR 2177](https://github.com/KhronosGroup/OpenCL-CTS/pull/2176) it was [noted](https://github.com/KhronosGroup/OpenCL-CTS/pull/2176#discussion_r1951838873) by @bashbaug that the result of the `CL_CONTEXT_DEVICES` query is not required by the specification to retain the same order as...
``` GLuint vbo=0; GLuint vao=0; glGenVertexArrays(1, &vao); glBindVertexArray(vao); glGenBuffers(1, &vbo); glBindBuffer(GL_ARRAY_BUFFER, vbo); glBufferData(GL_ARRAY_BUFFER, sizeof(vertices), vertices, GL_STATIC_DRAW); GLint loc_pos = glGetAttribLocation(shader_program, "position"); if(loc_pos!=-1) { glVertexAttribPointer(loc_pos, 2, GL_FLOAT, GL_FALSE, 4 * sizeof(float),...
`device_list` parameter description should be located **after** `num_devices` parameter description
Fixes #2164 according to issue description
Related to #2142, according to the work plan, extending CBasicTestFetchSub with support for atomic_double.
Due to discussion from #2542
Related to #2142, according to the work plan, extending CBasicTestFetchAddSpecialFloats with support for atomic_half.
Fixes #2213 according to mentioned discussion