Skip to content

Commit 71129cb

Browse files
committed
Added allow dead code while WIP to pass CI.
1 parent 8c5738d commit 71129cb

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/linalg/impl_linalg.rs

+4
Original file line numberDiff line numberDiff line change
@@ -824,6 +824,7 @@ mod blas_tests {
824824
}
825825
}
826826

827+
#[allow(dead_code)]
827828
fn general_outer_to_dyn<Sa, Sb, I, F, T>(
828829
a: &ArrayBase<Sa, IxDyn>,
829830
b: &ArrayBase<Sb, I>,
@@ -856,6 +857,7 @@ where
856857
}
857858
}
858859

860+
#[allow(dead_code)]
859861
fn kron_to_dyn<Sa, I, Sb, T>(a: &ArrayBase<Sa, IxDyn>, b: &ArrayBase<Sb, I>) -> Array<T, IxDyn>
860862
where
861863
T: Copy,
@@ -868,6 +870,7 @@ where
868870
general_outer_to_dyn(a, b, |mut res, x, a| res.assign(&(a * x)))
869871
}
870872

873+
#[allow(dead_code)]
871874
fn general_outer_same_size<Sa, I, Sb, F, T>(
872875
a: &ArrayBase<Sa, I>,
873876
b: &ArrayBase<Sb, I>,
@@ -892,6 +895,7 @@ where
892895
}
893896
}
894897

898+
#[allow(dead_code)]
895899
fn kron_same_size<Sa, I, Sb, T>(a: &ArrayBase<Sa, I>, b: &ArrayBase<Sb, I>) -> Array<T, I>
896900
where
897901
T: Copy,

0 commit comments

Comments
 (0)