blob: 211b1710b29c2b362e8bf7319ae158cb80abb508 [file] [log] [blame]
enable chromium_experimental_subgroup_matrix;
enable f16;
@group(0) @binding(0) var<storage, read_write> prevent_dce : array<f16, 1024>;
var<workgroup> arg_0 : array<f16, 64>;
fn subgroupMatrixLoad_fd7bd9() -> subgroup_matrix_result<f16, 8, 8> {
var res : subgroup_matrix_result<f16, 8, 8> = subgroupMatrixLoad<subgroup_matrix_result<f16, 8, 8>>(&(arg_0), 1u, true, 1u);
return res;
}
@compute @workgroup_size(1)
fn compute_main() {
subgroupMatrixStore(&(prevent_dce), 0, subgroupMatrixLoad_fd7bd9(), false, 64);
}