Fix two cuda bugs (matmul and where_cond).

This commit is contained in:
laurent
2023-06-27 11:31:04 +01:00
parent d7f729fb8f
commit 380d61e990
3 changed files with 5 additions and 5 deletions

View File

@ -301,8 +301,8 @@ fn gemm_config<T>(
Ok(StridedBatchedConfig {
batch_size: b as i32,
gemm,
stride_a: (m * k) as i64,
stride_b: (n * k) as i64,
stride_a: (n * k) as i64,
stride_b: (m * k) as i64,
stride_c: (m * n) as i64,
})
}