-
-
Notifications
You must be signed in to change notification settings - Fork 62
Setup the codebase to use explicit imports #636
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
using LinearSolve: LinearSolve, is_cusparse, defaultalg, cudss_loaded, DefaultLinearSolver, | ||
DefaultAlgorithmChoice, ALREADY_WARNED_CUDSS, LinearCache, needs_concrete_A, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[JuliaFormatter] reported by reviewdog 🐶
using LinearSolve: LinearSolve, is_cusparse, defaultalg, cudss_loaded, DefaultLinearSolver, | |
DefaultAlgorithmChoice, ALREADY_WARNED_CUDSS, LinearCache, needs_concrete_A, | |
using LinearSolve: LinearSolve, is_cusparse, defaultalg, cudss_loaded, DefaultLinearSolver, | |
DefaultAlgorithmChoice, ALREADY_WARNED_CUDSS, LinearCache, | |
needs_concrete_A, |
using LinearSolve: LinearSolve, SciMLLinearSolveAlgorithm, init, solve!, LinearProblem, | ||
LinearCache, AbstractKrylovSubspaceMethod, DefaultLinearSolver, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[JuliaFormatter] reported by reviewdog 🐶
using LinearSolve: LinearSolve, SciMLLinearSolveAlgorithm, init, solve!, LinearProblem, | |
LinearCache, AbstractKrylovSubspaceMethod, DefaultLinearSolver, | |
using LinearSolve: LinearSolve, SciMLLinearSolveAlgorithm, init, solve!, LinearProblem, | |
LinearCache, AbstractKrylovSubspaceMethod, DefaultLinearSolver, |
@@ -1,7 +1,8 @@ | |||
module LinearSolveRecursiveFactorizationExt | |||
|
|||
using LinearSolve | |||
using LinearSolve: LinearSolve, userecursivefactorization, LinearCache, @get_cacheval, RFLUFactorization |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[JuliaFormatter] reported by reviewdog 🐶
using LinearSolve: LinearSolve, userecursivefactorization, LinearCache, @get_cacheval, RFLUFactorization | |
using LinearSolve: LinearSolve, userecursivefactorization, LinearCache, @get_cacheval, | |
RFLUFactorization |
@get_cacheval, CHOLMODFactorization, GenericFactorization, GenericLUFactorization, | ||
KLUFactorization, LUFactorization, NormalCholeskyFactorization, OperatorAssumptions, | ||
QRFactorization, RFLUFactorization, UMFPACKFactorization, solve |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[JuliaFormatter] reported by reviewdog 🐶
@get_cacheval, CHOLMODFactorization, GenericFactorization, GenericLUFactorization, | |
KLUFactorization, LUFactorization, NormalCholeskyFactorization, OperatorAssumptions, | |
QRFactorization, RFLUFactorization, UMFPACKFactorization, solve | |
@get_cacheval, CHOLMODFactorization, GenericFactorization, | |
GenericLUFactorization, | |
KLUFactorization, LUFactorization, NormalCholeskyFactorization, | |
OperatorAssumptions, | |
QRFactorization, RFLUFactorization, UMFPACKFactorization, solve |
ec4d975
to
2889418
Compare
QRFactorization, RFLUFactorization, UMFPACKFactorization, solve | ||
using ArrayInterface: ArrayInterface | ||
using LinearAlgebra: LinearAlgebra, I, Hermitian, Symmetric, cholesky, ldiv!, lu, lu!, QR | ||
using SparseArrays: SparseArrays, AbstractSparseArray, AbstractSparseMatrixCSC, SparseMatrixCSC, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[JuliaFormatter] reported by reviewdog 🐶
using SparseArrays: SparseArrays, AbstractSparseArray, AbstractSparseMatrixCSC, SparseMatrixCSC, | |
using SparseArrays: SparseArrays, AbstractSparseArray, AbstractSparseMatrixCSC, | |
SparseMatrixCSC, |
using LinearAlgebra: LinearAlgebra, BlasInt, LU, Adjoint, BLAS, Bidiagonal, BunchKaufman, | ||
ColumnNorm, Diagonal, Factorization, Hermitian, I, LAPACK, NoPivot, | ||
RowMaximum, RowNonZero, SymTridiagonal, Symmetric, Transpose, | ||
Tridiagonal, UniformScaling, axpby!, axpy!, bunchkaufman, bunchkaufman!, | ||
cholesky, cholesky!, diagind, dot, inv, ldiv!, ldlt!, lu, lu!, mul!, norm, | ||
qr, qr!, svd, svd! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[JuliaFormatter] reported by reviewdog 🐶
using LinearAlgebra: LinearAlgebra, BlasInt, LU, Adjoint, BLAS, Bidiagonal, BunchKaufman, | |
ColumnNorm, Diagonal, Factorization, Hermitian, I, LAPACK, NoPivot, | |
RowMaximum, RowNonZero, SymTridiagonal, Symmetric, Transpose, | |
Tridiagonal, UniformScaling, axpby!, axpy!, bunchkaufman, bunchkaufman!, | |
cholesky, cholesky!, diagind, dot, inv, ldiv!, ldlt!, lu, lu!, mul!, norm, | |
qr, qr!, svd, svd! | |
using LinearAlgebra: LinearAlgebra, BlasInt, LU, Adjoint, BLAS, Bidiagonal, BunchKaufman, | |
ColumnNorm, Diagonal, Factorization, Hermitian, I, LAPACK, NoPivot, | |
RowMaximum, RowNonZero, SymTridiagonal, Symmetric, Transpose, | |
Tridiagonal, UniformScaling, axpby!, axpy!, bunchkaufman, | |
bunchkaufman!, | |
cholesky, cholesky!, diagind, dot, inv, ldiv!, ldlt!, lu, lu!, mul!, | |
norm, | |
qr, qr!, svd, svd! |
using SciMLOperators: SciMLOperators, AbstractSciMLOperator, IdentityOperator, MatrixOperator, | ||
has_ldiv!, issquare |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[JuliaFormatter] reported by reviewdog 🐶
using SciMLOperators: SciMLOperators, AbstractSciMLOperator, IdentityOperator, MatrixOperator, | |
has_ldiv!, issquare | |
using SciMLOperators: SciMLOperators, AbstractSciMLOperator, IdentityOperator, | |
MatrixOperator, | |
has_ldiv!, issquare |
|
||
@test check_no_implicit_imports(LinearSolve; skip = (Base, Core), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[JuliaFormatter] reported by reviewdog 🐶
@test check_no_implicit_imports(LinearSolve; skip = (Base, Core), | |
@test check_no_implicit_imports(LinearSolve; skip = (Base, Core), |
|
||
@test check_no_implicit_imports(LinearSolve; skip = (Base, Core), | ||
allow_unanalyzable = unanalyzable_mods) === nothing | ||
@test check_no_stale_explicit_imports(LinearSolve; allow_unanalyzable = unanalyzable_mods) === nothing |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[JuliaFormatter] reported by reviewdog 🐶
@test check_no_stale_explicit_imports(LinearSolve; allow_unanalyzable = unanalyzable_mods) === nothing | |
@test check_no_stale_explicit_imports( | |
LinearSolve; allow_unanalyzable = unanalyzable_mods) === nothing |
No description provided.