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

Add some checkbounds #2875

Closed
wants to merge 1 commit 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
10 changes: 5 additions & 5 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ steps:
- label: "GPU: baroclinic wave"
key: "gpu_baroclinic_wave_rhoe"
command: >
julia --color=yes --project=examples examples/hybrid/driver.jl
julia --check-bounds=yes --color=yes --project=examples examples/hybrid/driver.jl
--config_file $PERF_CONFIG_PATH/gpu_baroclinic_wave_rhoe.yml
artifact_paths: "gpu_implicit_barowave_ref/output_active/*"
agents:
Expand All @@ -664,7 +664,7 @@ steps:
- mkdir -p target_gpu_implicit_baroclinic_wave
- >
nsys profile --trace=nvtx,cuda --output=target_gpu_implicit_baroclinic_wave/output_active/report
julia --color=yes --project=examples examples/hybrid/driver.jl
julia --check-bounds=yes --color=yes --project=examples examples/hybrid/driver.jl
--config_file ${GPU_CONFIG_PATH}target_gpu_implicit_baroclinic_wave.yml
artifact_paths: "target_gpu_implicit_baroclinic_wave/output_active/*"
agents:
Expand Down Expand Up @@ -703,15 +703,15 @@ steps:
command:
- mkdir -p gpu_aquaplanet_dyamond
- >
julia --color=yes --project=examples examples/hybrid/driver.jl
julia --check-bounds=yes --color=yes --project=examples examples/hybrid/driver.jl
--config_file ${GPU_CONFIG_PATH}gpu_aquaplanet_dyamond.yml
artifact_paths: "gpu_aquaplanet_dyamond/output_active/*"
agents:
slurm_gpus: 1

- label: "GPU: Diagnostic EDMFX aquaplanet"
command: >
julia --color=yes --project=examples examples/hybrid/driver.jl
julia --check-bounds=yes --color=yes --project=examples examples/hybrid/driver.jl
--config_file $GPU_CONFIG_PATH/gpu_diagnostic_edmfx_aquaplanet.yml
artifact_paths: "gpu_diagnostic_edmfx_aquaplanet/output_active/*"
agents:
Expand All @@ -720,7 +720,7 @@ steps:

- label: "GPU: Prognostic EDMFX aquaplanet"
command: >
julia --color=yes --project=examples examples/hybrid/driver.jl
julia --check-bounds=yes --color=yes --project=examples examples/hybrid/driver.jl
--config_file $GPU_CONFIG_PATH/gpu_prognostic_edmfx_aquaplanet.yml
artifact_paths: "gpu_prognostic_edmfx_aquaplanet/output_active/*"
agents:
Expand Down
Loading