Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
*.jl.*.cov
*.jl.cov
*.jl.mem
.*.swp
Manifest.toml
docs/build/
2 changes: 1 addition & 1 deletion ext/MatrixAlgebraKitChainRulesCoreExt.jl
Original file line number Diff line number Diff line change
Expand Up @@ -176,4 +176,4 @@ function ChainRulesCore.rrule(::typeof(right_polar!), A::AbstractMatrix, PWᴴ,
return PWᴴ, right_polar_pullback
end

end
end
2 changes: 1 addition & 1 deletion src/algorithms.jl
Original file line number Diff line number Diff line change
Expand Up @@ -178,4 +178,4 @@ macro check_size(x, sz, size=:size)
string($sz)
szx == $sz || throw(DimensionMismatch($err))
end)
end
end
2 changes: 1 addition & 1 deletion src/implementations/orthnull.jl
Original file line number Diff line number Diff line change
Expand Up @@ -215,4 +215,4 @@ function right_null!(A::AbstractMatrix, Nᴴ; kwargs...)
else
throw(ArgumentError("`right_null!` received unknown value `kind = $kind`"))
end
end
end
2 changes: 1 addition & 1 deletion src/interface/orthnull.jl
Original file line number Diff line number Diff line change
Expand Up @@ -224,4 +224,4 @@ function right_null!(A::AbstractMatrix; kwargs...)
end
function right_null(A::AbstractMatrix; kwargs...)
return right_null!(copy_input(right_null, A); kwargs...)
end
end
2 changes: 1 addition & 1 deletion src/pullbacks/polar.jl
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ function right_polar_pullback!(ΔA::AbstractMatrix, PWᴴ, ΔPWᴴ)
ΔA .+= PΔWᴴ
end
return ΔA
end
end
2 changes: 1 addition & 1 deletion test/chainrules.jl
Original file line number Diff line number Diff line change
Expand Up @@ -356,4 +356,4 @@ end
test_rrule(config, right_null, A; fkwargs=(; kind=:lqpos), output_tangent=ΔNᴴ,
atol=atol, rtol=rtol, rrule_f=rrule_via_ad, check_inferred=false)
end
end
end
2 changes: 1 addition & 1 deletion test/orthnull.jl
Original file line number Diff line number Diff line change
Expand Up @@ -209,4 +209,4 @@ end
end
end
end
end
end