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
/* We need to use a portion of available alloc size,
* divide it to leave some memory for the platform. */
thus it means that if a device reports CL_DEVICE_IMAGE_MAX_BUFFER_SIZE = CL_DEVICE_MAX_MEM_ALLOC_SIZE/2 + 1, the test is failing, while it feels that it should still be passing.
leaving half of the space of the platform is quite a lot, and it feels quite arbitrary.
Am I missing something?
The text was updated successfully, but these errors were encountered:
In that test we are comparing
CL_DEVICE_IMAGE_MAX_BUFFER_SIZE
withCL_DEVICE_MAX_MEM_ALLOC_SIZE/MAX_DEVICE_MEMORY_SIZE_DIVISOR
.OpenCL-CTS/test_common/harness/deviceInfo.h
Line 53 in 5b35180
thus it means that if a device reports
CL_DEVICE_IMAGE_MAX_BUFFER_SIZE = CL_DEVICE_MAX_MEM_ALLOC_SIZE/2 + 1
, the test is failing, while it feels that it should still be passing.leaving half of the space of the platform is quite a lot, and it feels quite arbitrary.
Am I missing something?
The text was updated successfully, but these errors were encountered: