Skip to content

opencl: reduce moments in local memory without float atomics - #3726

Draft
melonakos wants to merge 2 commits into
masterfrom
fix/opencl-moments-local-atomics
Draft

opencl: reduce moments in local memory without float atomics#3726
melonakos wants to merge 2 commits into
masterfrom
fix/opencl-moments-local-atomics

Conversation

@melonakos

@melonakos melonakos commented Sep 11, 2026

Copy link
Copy Markdown
Member

On Intel GPUs af::moments returned 0 for every moment slot after the first whenever more than one moment was requested, so AF_MOMENT_FIRST_ORDER came back as (M00, M01, 0, 0) and six of the seven moments tests failed on an Arc B580 (driver 32.0.101.8991) and a UHD 770 (32.0.101.7088); the Intel CPU OpenCL device was correct. The kernel accumulated into local memory through a hand-rolled float compare-and-swap loop, and on those two devices that loop returns zeros for the second and later slots; I have no reduced repro or upstream report for why. Each work-item now accumulates its rows privately and the group reduces with a tree in local memory, so the kernel needs no local atomics; the cross-group global atomic add is unchanged. The moments suite passes on both Intel GPUs and the CPU device with this. Not run on AMD or NVIDIA OpenCL.

sift_nonfree.cl carries the same local float compare-and-swap and is left alone here; it needs its own issue.

On Intel GPUs af::moments returned 0 for every moment slot after the first whenever more than one moment was requested, so AF_MOMENT_FIRST_ORDER came back as (M00, M01, 0, 0). The kernel accumulated into local memory through a hand-rolled float compare-and-swap loop, which Intel's GPU compiler mishandles for the second and later slots while the same code is fine on the Intel CPU OpenCL device. Each work-item now accumulates its rows privately and the group reduces with a tree in local memory, which needs no local atomics and is cheaper. The cross-group global atomic add is unchanged.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant