Skip to content

Commit 5983a43

Browse files
daviehhfredrikekre
authored andcommitted
using isapprox for floating point comparison (#33596)
one way to fix JuliaLang/julia#33580 possibly due to mkl/julia handling the matrix product of the lazy `'` of AA and `copy(AA')` differently
1 parent 80d311f commit 5983a43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ d[5,1:2:4,8] .= 19
213213
AA = rand(4,2)
214214
A = @inferred(convert(SharedArray, AA))
215215
B = @inferred(convert(SharedArray, copy(AA')))
216-
@test B*A == AA'*AA
216+
@test B*A AA'*AA
217217

218218
d=SharedArray{Int64,2}((10,10); init = D->fill!(D.loc_subarr_1d, myid()), pids=[id_me, id_other])
219219
d2 = map(x->1, d)

0 commit comments

Comments
 (0)