We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3af656 commit f357320Copy full SHA for f357320
test/testsuite/linalg.jl
@@ -118,8 +118,8 @@
118
gpu_b = AT{Float32}(undef, 128, 128) |> TR
119
120
gpu_c = copyto!(gpu_b, gpu_a)
121
- @test all(Array(gpu_b) .== Array(gpu_a))
122
- @test all(Array(gpu_c) .== Array(gpu_a))
+ @test all(TR(Array(parent(gpu_b))) .== TR(Array(parent(gpu_a))))
+ @test all(TR(Array(parent(gpu_c))) .== TR(Array(parent(gpu_a))))
123
@test gpu_c isa TR
124
end
125
0 commit comments