blob: 8211910adf0b72f83ce5b8c495f4b688216af136 [file] [log] [blame] [edit]
enable chromium_experimental_subgroup_matrix;
enable f16;
@group(0) @binding(0) var<storage, read_write> prevent_dce : array<f16, 1024>;
struct SB_RO {
arg_0 : array<f16>,
}
@group(0) @binding(1) var<storage, read> sb_ro : SB_RO;
fn subgroupMatrixLoad_5de410() -> subgroup_matrix_left<f16, 8, 8> {
var res : subgroup_matrix_left<f16, 8, 8> = subgroupMatrixLoad<subgroup_matrix_left<f16, 8, 8>>(&(sb_ro.arg_0), 1u, true, 8u);
return res;
}
@compute @workgroup_size(1)
fn compute_main() {
subgroupMatrixStore(&(prevent_dce), 0, subgroupMatrixLoad_5de410(), false, 64);
}