Skip to content

Commit 1b0bbc6

Browse files
committed
Skip broken test on 1.11.
[only julia]
1 parent 34c823f commit 1b0bbc6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

test/libraries/cublas.jl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1824,7 +1824,11 @@ end
18241824
end
18251825

18261826
# also test an unsupported combination (falling back to GPUArrays)
1827-
let AT=BFloat16, BT=Int32, CT=Float64
1827+
if VERSION < v"1.11-" # JuliaGPU/CUDA.jl#2441
1828+
AT=BFloat16
1829+
BT=Int32
1830+
CT=Float64
1831+
18281832
A = AT.(rand(m,k))
18291833
B = rand(BT, k,n)
18301834
C = similar(B, CT)

0 commit comments

Comments
 (0)