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
101101
102102 void preload ()
103103 {
104- const uint16_t invocationIndex = workgroup::SubgroupContiguousIndex ();
104+ const uint16_t invocationIndex = hlsl:: workgroup::SubgroupContiguousIndex ();
105105 [unroll]
106106 for (uint16_t idx = 0 ; idx < PreloadedDataCount; idx++)
107107 data.template get<dtype_t, uint16_t>(idx * WorkgroupSize + invocationIndex, preloaded[idx]);
108108 }
109109 void unload ()
110110 {
111- const uint16_t invocationIndex = workgroup::SubgroupContiguousIndex ();
111+ const uint16_t invocationIndex = hlsl:: workgroup::SubgroupContiguousIndex ();
112112 [unroll]
113113 for (uint16_t idx = 0 ; idx < PreloadedDataCount; idx++)
114114 data.template set<dtype_t, uint16_t>(idx * WorkgroupSize + invocationIndex, preloaded[idx]);
You can’t perform that action at this time.
0 commit comments