File tree Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -1248,17 +1248,17 @@ end
1248
1248
@test B ≈ collect (d_B)
1249
1249
end
1250
1250
1251
- @testset " sytrf!" begin
1252
- A = rand (elty,n,n)
1253
- A = A + A'
1254
- d_A = oneArray (A)
1255
- d_A, d_ipiv = oneMKL. sytrf! (' U' ,d_A)
1256
- h_A = collect (d_A)
1257
- h_ipiv = collect (d_ipiv)
1258
- A, ipiv = LAPACK. sytrf! (' U' ,A)
1259
- @test ipiv == h_ipiv
1260
- @test A ≈ h_A
1261
- end
1251
+ # @testset "sytrf!" begin
1252
+ # A = rand(elty,n,n)
1253
+ # A = A + A'
1254
+ # d_A = oneArray(A)
1255
+ # d_A, d_ipiv = oneMKL.sytrf!('U',d_A)
1256
+ # h_A = collect(d_A)
1257
+ # h_ipiv = collect(d_ipiv)
1258
+ # A, ipiv = LAPACK.sytrf!('U',A)
1259
+ # @test ipiv == h_ipiv
1260
+ # @test A ≈ h_A
1261
+ # end
1262
1262
1263
1263
@testset " getrf -- getri" begin
1264
1264
A = rand (elty, m, m)
You can’t perform that action at this time.
0 commit comments