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 2a8540e commit abb8dbdCopy full SHA for abb8dbd
.github/workflows/ci.yml
@@ -14,7 +14,7 @@ jobs:
14
strategy:
15
fail-fast: false
16
matrix:
17
- version: ['1.8', '1.9', '1.10.0-rc2', 'nightly']
+ version: ['1.8', '1.9', '1.10', 'nightly']
18
os: [ubuntu-latest, macOS-latest, windows-latest]
19
arch: [x64]
20
steps:
test/testsuite/base.jl
@@ -377,7 +377,8 @@ end
377
# only GPUArrays materialize the reinterpret(reshape) wrapper
378
@test b isa AT{Float32, 2}
379
end
380
- @test Array(b) == [1.0 0.0 0.0; 2.0 2.0 3.0]
+ @test(Array(b) == [1.0 0.0 0.0; 2.0 2.0 3.0],
381
+ broken=(AT <: Array && VERSION >= v"1.11.0-DEV.727"))
382
383
a = AT(Float32[1.0 0.0 0.0; 2.0 2.0 3.0])
384
b = reinterpret(reshape, ComplexF32, a)
0 commit comments