You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A few stragglers.
Backported PRs:
- [x] #53091 <!-- Ensure elision of `require_one_based_indexing` with
high-dim array views -->
- [x] #53117 <!-- Try to fix incorrect documentation of `nthreads` -->
- [x] #52855 <!-- Fix variable name in scaling an `AbstractTriangular`
with zero alpha -->
- [x] #52952 <!-- [REPLCompletions] enable completions for `using
Module.Inner|` -->
- [x] #53101 <!-- Inplace transpose for unit Triangular may skip
diagonal -->
Need manual backport:
- [ ] #52505 <!-- fix alignment of emit_unbox_store copy -->
Non-merged PRs with backport label:
- [ ] #53125 <!-- coverage: count coverage where explicitly requested by
inference only -->
- [ ] #52694 <!-- Reinstate similar for AbstractQ for backward
compatibility -->
- [ ] #51479 <!-- prevent code loading from lookin in the versioned
environment when building Julia -->
Copy file name to clipboardExpand all lines: stdlib/LinearAlgebra/test/triangular.jl
+14-1
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ debug && println("Test basic type functionality")
18
18
@testLowerTriangular(randn(3, 3)) |> t -> [size(t, i) for i =1:3] == [size(Matrix(t), i) for i =1:3]
19
19
20
20
# The following test block tries to call all methods in base/linalg/triangular.jl in order for a combination of input element types. Keep the ordering when adding code.
21
-
for elty1 in (Float32, Float64, BigFloat, ComplexF32, ComplexF64, Complex{BigFloat}, Int)
21
+
@testsetfor elty1 in (Float32, Float64, BigFloat, ComplexF32, ComplexF64, Complex{BigFloat}, Int)
22
22
# Begin loop for first Triangular matrix
23
23
for (t1, uplo1) in ((UpperTriangular, :U),
24
24
(UnitUpperTriangular, :U),
@@ -239,6 +239,11 @@ for elty1 in (Float32, Float64, BigFloat, ComplexF32, ComplexF64, Complex{BigFlo
0 commit comments