2023-01-06 02:25:06 +00:00
|
|
|
SKIP: FAILED
|
|
|
|
|
2023-03-06 18:25:08 +00:00
|
|
|
float16_t tint_workgroupUniformLoad(inout float16_t p) {
|
2023-01-06 02:25:06 +00:00
|
|
|
GroupMemoryBarrierWithGroupSync();
|
2023-03-06 18:25:08 +00:00
|
|
|
const float16_t result = p;
|
2023-01-06 02:25:06 +00:00
|
|
|
GroupMemoryBarrierWithGroupSync();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2023-03-06 18:25:08 +00:00
|
|
|
groupshared float16_t arg_0;
|
|
|
|
RWByteAddressBuffer prevent_dce : register(u0, space2);
|
|
|
|
|
2023-01-06 02:25:06 +00:00
|
|
|
void workgroupUniformLoad_e07d08() {
|
2023-03-06 18:25:08 +00:00
|
|
|
float16_t res = tint_workgroupUniformLoad(arg_0);
|
|
|
|
prevent_dce.Store<float16_t>(0u, res);
|
2023-01-06 02:25:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct tint_symbol_1 {
|
|
|
|
uint local_invocation_index : SV_GroupIndex;
|
|
|
|
};
|
|
|
|
|
|
|
|
void compute_main_inner(uint local_invocation_index) {
|
|
|
|
{
|
|
|
|
arg_0 = float16_t(0.0h);
|
|
|
|
}
|
|
|
|
GroupMemoryBarrierWithGroupSync();
|
|
|
|
workgroupUniformLoad_e07d08();
|
|
|
|
}
|
|
|
|
|
|
|
|
[numthreads(1, 1, 1)]
|
|
|
|
void compute_main(tint_symbol_1 tint_symbol) {
|
|
|
|
compute_main_inner(tint_symbol.local_invocation_index);
|
|
|
|
return;
|
|
|
|
}
|