Skip to content

Commit 30c25ee

Browse files
committed
fix tests
1 parent ad4dce8 commit 30c25ee

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

shaders/stensor/linalg/gemm.slang

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ void gemm_fast(
2626
) {
2727
let local_id = local_id.y;
2828

29-
out[0] = 1.0;
30-
3129
for (var k = 0u; k < shape_m2.ncols; k += 4u) {
3230
var sum = float4x4(0.0);
3331

src/linalg/contiguous.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,8 @@ mod test {
112112
&backend,
113113
&mut shapes,
114114
&mut pass,
115-
gpu_tensor.as_view().transposed(),
116115
&gpu_output,
116+
gpu_tensor.as_view().transposed(),
117117
)
118118
.unwrap();
119119
drop(pass); // Ensure the pass is ended before the encoder is borrowed again.

0 commit comments

Comments
 (0)