File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
common/include/nbl/examples/workgroup Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -101,14 +101,14 @@ struct PreloadedDataProxy
101
101
102
102
void preload ()
103
103
{
104
- const uint16_t invocationIndex = workgroup::SubgroupContiguousIndex ();
104
+ const uint16_t invocationIndex = hlsl:: workgroup::SubgroupContiguousIndex ();
105
105
[unroll]
106
106
for (uint16_t idx = 0 ; idx < PreloadedDataCount; idx++)
107
107
data.template get<dtype_t, uint16_t>(idx * WorkgroupSize + invocationIndex, preloaded[idx]);
108
108
}
109
109
void unload ()
110
110
{
111
- const uint16_t invocationIndex = workgroup::SubgroupContiguousIndex ();
111
+ const uint16_t invocationIndex = hlsl:: workgroup::SubgroupContiguousIndex ();
112
112
[unroll]
113
113
for (uint16_t idx = 0 ; idx < PreloadedDataCount; idx++)
114
114
data.template set<dtype_t, uint16_t>(idx * WorkgroupSize + invocationIndex, preloaded[idx]);
You can’t perform that action at this time.
0 commit comments