Skip to content

Commit 67cbfe1

Browse files
emmatypingbluss
authored andcommitted
Small realignment of comment
1 parent 8712bac commit 67cbfe1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/linalg/impl_linalg.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -452,9 +452,9 @@ fn mat_mul_impl<A>(
452452
let lhs_stride = cmp::max(lhs_.strides()[0] as blas_index, k as blas_index);
453453
let rhs_stride = cmp::max(rhs_.strides()[0] as blas_index, n as blas_index);
454454
let c_stride = cmp::max(c_.strides()[0] as blas_index, n as blas_index);
455+
455456
// gemm is C ← αA^Op B^Op + βC
456457
// Where Op is notrans/trans/conjtrans
457-
458458
unsafe {
459459
blas_sys::$gemm(
460460
CblasRowMajor,

0 commit comments

Comments
 (0)