Skip to content

Commit 2e2233b

Browse files
kshyattchristiangnrd
authored andcommitted
Try to unbreak linalg test on nightly
1 parent 1901868 commit 2e2233b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/testsuite/linalg.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@
124124
gpu_b = AT{Float32}(undef, 128, 128) |> TR
125125

126126
gpu_c = copyto!(gpu_b, gpu_a)
127-
@test all(Array(gpu_b) .== Array(gpu_a))
128-
@test all(Array(gpu_c) .== Array(gpu_a))
127+
@test all(TR(Array(parent(gpu_b))) .== TR(Array(parent(gpu_a))))
128+
@test all(TR(Array(parent(gpu_c))) .== TR(Array(parent(gpu_a))))
129129
@test gpu_c isa TR
130130
end
131131
end

0 commit comments

Comments
 (0)