We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8712bac commit 67cbfe1Copy full SHA for 67cbfe1
src/linalg/impl_linalg.rs
@@ -452,9 +452,9 @@ fn mat_mul_impl<A>(
452
let lhs_stride = cmp::max(lhs_.strides()[0] as blas_index, k as blas_index);
453
let rhs_stride = cmp::max(rhs_.strides()[0] as blas_index, n as blas_index);
454
let c_stride = cmp::max(c_.strides()[0] as blas_index, n as blas_index);
455
+
456
// gemm is C ← αA^Op B^Op + βC
457
// Where Op is notrans/trans/conjtrans
-
458
unsafe {
459
blas_sys::$gemm(
460
CblasRowMajor,
0 commit comments