Skip to content

Commit f7ca159

Browse files
committed
fmt
1 parent 7930816 commit f7ca159

2 files changed

Lines changed: 17 additions & 5 deletions

File tree

tests/compiletests/ui/arch/cooperative_matrix.rs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
// build-pass
22
// compile-flags: -C target-feature=+CooperativeMatrixKHR,+VulkanMemoryModel,+ext:SPV_KHR_cooperative_matrix -C llvm-args=--dump-post-split=/Users/ali/work/rust-gpu/dump
33

4+
use spirv_std::cooperative_matrix::{
5+
COLUMN_MAJOR, CooperativeMatrix, MATRIX_A, MATRIX_ACCUMULATOR, MATRIX_B, ROW_MAJOR, mul_add,
6+
};
47
use spirv_std::spirv;
5-
use spirv_std::cooperative_matrix::{CooperativeMatrix, MATRIX_A, MATRIX_B, MATRIX_ACCUMULATOR, ROW_MAJOR, COLUMN_MAJOR, mul_add};
68

7-
type MatA = CooperativeMatrix<f32, MATRIX_A, 16, 16>;
8-
type MatB = CooperativeMatrix<f32, MATRIX_B, 16, 16>;
9+
type MatA = CooperativeMatrix<f32, MATRIX_A, 16, 16>;
10+
type MatB = CooperativeMatrix<f32, MATRIX_B, 16, 16>;
911
type MatAcc = CooperativeMatrix<f32, MATRIX_ACCUMULATOR, 16, 16>;
1012

1113
#[spirv(compute(threads(32)))]

tests/difftests/tests/Cargo.lock

Lines changed: 12 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)