File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11# Inputs
22# ------
3- copy_input(:: typeof (left_polar), A:: AbstractMatrix ) = copy_input(svd_full, A)
4- copy_input(:: typeof (right_polar), A:: AbstractMatrix ) = copy_input(svd_full, A)
3+ copy_input(:: typeof (left_polar), A) = copy_input(svd_full, A)
4+ copy_input(:: typeof (right_polar), A) = copy_input(svd_full, A)
55
66function check_input(:: typeof (left_polar!), A:: AbstractMatrix , WP)
77 m, n = size(A)
Original file line number Diff line number Diff line change 11# Inputs
22# ------
3- function copy_input(:: typeof (svd_full), A:: AbstractMatrix )
3+ function copy_input(:: typeof (svd_full), A)
44 return copy!(similar(A, float(eltype(A))), A)
55end
6- copy_input(:: typeof (svd_compact), A:: AbstractMatrix ) = copy_input(svd_full, A)
7- copy_input(:: typeof (svd_vals), A:: AbstractMatrix ) = copy_input(svd_full, A)
6+ copy_input(:: typeof (svd_compact), A) = copy_input(svd_full, A)
7+ copy_input(:: typeof (svd_vals), A) = copy_input(svd_full, A)
88copy_input(:: typeof (svd_trunc), A) = copy_input(svd_compact, A)
99
1010# TODO : many of these checks are happening again in the LAPACK routines
You can’t perform that action at this time.
0 commit comments