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
Size of local memory region in bytes. The minimum value is 32 KB for devices that are not of type CL_DEVICE_TYPE_CUSTOM.
I think the meaning of "local memory region" here is ambiguous, because it could refer to either:
The size of the physical local memory present in each compute unit; or
The maximum amount of local memory available to a single work-group.
Based on the behavior of existing implementations, it seems that the intent is 2). Wording like the following would be clearer:
Maximum amount of local memory available to each work-group, in bytes. The minimum value is 32 KB for devices that are not of type CL_DEVICE_TYPE_CUSTOM.
The text was updated successfully, but these errors were encountered:
The definition of CL_DEVICE_LOCAL_MEM_SIZE is given as:
I think the meaning of "local memory region" here is ambiguous, because it could refer to either:
Based on the behavior of existing implementations, it seems that the intent is 2). Wording like the following would be clearer:
The text was updated successfully, but these errors were encountered: