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
Shared memory references should only belong to each block.
Instead they are currently part of the grid as being passed to a GPU program via the grid-level function as a parameter.
Instead:
for static allocations, find a way to make the allocation on the block-level
for dynamic allocations, is there a way to pass in a dynamic allocation to the GPU program? Or can the same system as for static allocations be used somehow?
The text was updated successfully, but these errors were encountered:
Shared memory references should only belong to each block.
Instead they are currently part of the grid as being passed to a GPU program via the grid-level function as a parameter.
Instead:
The text was updated successfully, but these errors were encountered: