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 36c63be commit 463531bCopy full SHA for 463531b
.github/workflows/CI.yml
@@ -49,7 +49,8 @@ jobs:
49
with:
50
files: lcov.info
51
token: ${{ secrets.CODECOV_TOKEN }}
52
- fail_ci_if_error: false
+ #fail_ci_if_error: false
53
+ fail_ci_if_error: true
54
docs:
55
name: Documentation
56
runs-on: ubuntu-latest
test/test_elbo.jl
@@ -57,8 +57,11 @@ end;
57
58
# setup g as FluxNN on gpu
59
using Flux
60
-scenario_flux = (scenario..., :use_Flux)
61
-g_flux, ϕg0_flux_cpu = get_hybridcase_MLapplicator(case; scenario = scenario_flux)
+
+if CUDA.functional()
62
+ scenario_flux = (scenario..., :use_Flux)
63
+ g_flux, ϕg0_flux_cpu = get_hybridcase_MLapplicator(case; scenario = scenario_flux)
64
+end
65
66
if CUDA.functional()
67
@testset "generate_ζ gpu" begin
0 commit comments