Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ steps:
agents:
queue: "juliagpu"
cuda: "*"
env:
JULIA_CUDA_USE_BINARYBUILDER: "true"
timeout_in_minutes: 60

# - label: "GPU nightly"
Expand Down
6 changes: 1 addition & 5 deletions test/cuda/layers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,7 @@ function gpu_gradtest(name::String, layers::Vector, x_cpu = nothing, args...; te

# test
if test_cpu
if VERSION >= v"1.7" && layer === GroupedConvTranspose && args[end] == selu
@test_broken y_gpu ≈ y_cpu rtol=1f-3 atol=1f-3
else
@test y_gpu ≈ y_cpu rtol=1f-3 atol=1f-3
end
@test y_gpu ≈ y_cpu rtol=1f-3 atol=1f-3
if isnothing(xg_cpu)
@test isnothing(xg_gpu)
else
Expand Down