Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

unbreak CI for now #1822

Closed
wants to merge 3 commits into from
Closed
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
16 changes: 15 additions & 1 deletion test/cuda/layers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,21 @@ 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
# FIXME revisit this after CUDA deps on CI are updated. Here's a snapshot from 2021-12-25:
# CUDA toolkit 11.4, local installation
# NVIDIA driver 495.29.5, for CUDA 11.5
# CUDA driver 11.5
# Libraries:
# - CUBLAS: 11.6.1
# - CURAND: 10.2.5
# - CUFFT: 10.5.2
# - CUSOLVER: 11.2.0
# - CUSPARSE: 11.6.0
# - CUPTI: 14.0.0
# - NVML: 11.0.0+495.29.5
# - CUDNN: 8.20.4 (for CUDA 11.4.0)
# - CUTENSOR: missing
@test_skip y_gpu ≈ y_cpu rtol=1f-3 atol=1f-3
else
@test y_gpu ≈ y_cpu rtol=1f-3 atol=1f-3
end
Expand Down