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

Run benchmarks on benchmark queue to avoid OOMs #15

Merged
merged 19 commits into from
Jan 18, 2022
Merged
16 changes: 13 additions & 3 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,20 @@ steps:
using Pkg
Pkg.instantiate()
println("Starting Benchmarks")
using FluxBench
FluxBench.submit(false)'
using FluxBench, Flux, CUDA
using CUDA.NVML
try
FluxBench.submit(false)
catch e
dev = NVML.devices()
for d in dev
@show NVML.compute_processes(d)
end
rethrow(e)
end'
agents:
queue: "juliagpu"
queue: "benchmark"
cuda: "*"
cap: "sm_75"
if: build.message !~ /\[skip benchmarks\]/ &&
build.branch !~ /^master$$/
Loading