Skip to content

Commit 455d5e0

Browse files
emmatypingbluss
andauthored
Change return type of Mul output
Co-authored-by: bluss <[email protected]>
1 parent 228f853 commit 455d5e0

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
@@ -711,7 +711,7 @@ where
711711
S1: Data<Elem = A>,
712712
S2: Data<Elem = A>,
713713
A: LinalgScalar,
714-
A: std::ops::Mul<&'a ArrayBase<S2, Ix2>, Output = ArrayBase<OwnedRepr<A>, Ix2>>,
714+
A: std::ops::Mul<&'a ArrayBase<S2, Ix2>, Output = Array<A, Ix2>>,
715715
{
716716
let dimar = a.shape()[0];
717717
let dimac = a.shape()[1];

0 commit comments

Comments
 (0)