File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -720,7 +720,7 @@ where
720720 & self ,
721721 matrix : & Array2 < F > ,
722722 ) -> Result < EighOutput < F > , Box < dyn Error + Send + Sync > > {
723- NdarrayLinAlgBackend . eigh_upper ( matrix)
723+ NdarrayLinAlgBackend :: default ( ) . eigh_upper ( matrix)
724724 }
725725}
726726
@@ -761,7 +761,7 @@ where
761761 NdarrayLinAlgBackend : BackendQR < F > ,
762762{
763763 fn qr_q_factor ( & self , matrix : & Array2 < F > ) -> Result < Array2 < F > , Box < dyn Error + Send + Sync > > {
764- NdarrayLinAlgBackend . qr_q_factor ( matrix)
764+ NdarrayLinAlgBackend :: default ( ) . qr_q_factor ( matrix)
765765 }
766766}
767767
@@ -808,6 +808,6 @@ where
808808 compute_u : bool ,
809809 compute_v : bool ,
810810 ) -> Result < SVDOutput < F > , Box < dyn Error + Send + Sync > > {
811- NdarrayLinAlgBackend . svd_into ( matrix, compute_u, compute_v)
811+ NdarrayLinAlgBackend :: default ( ) . svd_into ( matrix, compute_u, compute_v)
812812 }
813813}
You can’t perform that action at this time.
0 commit comments