blob: f9de15c311a8244861e15324e234250030df1116 [file] [log] [blame]
enable chromium_experimental_subgroup_matrix;
enable f16;
@group(0) @binding(0) var<storage, read_write> prevent_dce : array<f16, 1024>;
struct SB_RW {
arg_0 : array<f16, 64>,
}
@group(0) @binding(1) var<storage, read_write> sb_rw : SB_RW;
fn subgroupMatrixLoad_159294() -> subgroup_matrix_result<f16, 8, 8> {
var arg_1 = 1u;
const arg_2 = true;
var arg_3 = 1u;
var res : subgroup_matrix_result<f16, 8, 8> = subgroupMatrixLoad<subgroup_matrix_result<f16, 8, 8>>(&(sb_rw.arg_0), arg_1, arg_2, arg_3);
return res;
}
@compute @workgroup_size(1)
fn compute_main() {
subgroupMatrixStore(&(prevent_dce), 0, subgroupMatrixLoad_159294(), false, 64);
}