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 edmf benchmarks #3010

Merged
merged 1 commit into from
May 14, 2024
Merged
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
32 changes: 25 additions & 7 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -848,7 +848,7 @@ steps:
- group: "Benchmarks"
steps:

- label: "Perf: GPU implicit baro wave wrt h_elem"
- label: ":computer: Benchmark: GPU implicit baro wave wrt h_elem"
key: "gpu_implicit_barowave_wrt_h_elem"
command: >

Expand All @@ -859,7 +859,7 @@ steps:
agents:
slurm_gpus: 1

- label: "Perf: GPU implicit baro wave"
- label: ":computer: Benchmark: GPU implicit baro wave"
command: >

julia --color=yes --project=examples perf/benchmark_step.jl
Expand All @@ -869,7 +869,7 @@ steps:
agents:
slurm_gpus: 1

- label: "Perf: GPU implicit baro wave moist"
- label: ":computer: Benchmark: GPU implicit baro wave moist"
command: >

julia --color=yes --project=examples perf/benchmark_step.jl
Expand All @@ -880,23 +880,23 @@ steps:
slurm_mem: 16G
slurm_gpus: 1

- label: "Perf: CPU implicit baro wave"
- label: ":computer: Benchmark: CPU implicit baro wave"
command: >
julia --color=yes --project=examples perf/benchmark_step.jl
--config_file $PERF_CONFIG_PATH/cpu_implicit_barowave.yml
--job_id cpu_implicit_barowave
artifact_paths: "cpu_implicit_barowave/output_active/*"

# Benchmarks
- label: ":computer: Benchmark: perf target (default)"
- label: ":computer: Benchmark: CPU perf target (default)"
command: >
julia --color=yes --project=perf perf/benchmark.jl
--config_file $PERF_CONFIG_PATH/bm_perf_target.yml
--job_id bm_perf_target
agents:
slurm_mem: 24GB

- label: ":computer: Benchmark: perf target (gpu)"
- label: ":computer: Benchmark: GPU perf target"
command: >
julia --color=yes --project=perf perf/benchmark.jl
--config_file $PERF_CONFIG_PATH/bm_perf_target.yml
Expand All @@ -905,7 +905,7 @@ steps:
slurm_mem: 24GB
slurm_gpus: 1

- label: ":computer: Benchmark: perf target (Threaded)"
- label: ":computer: Benchmark: CPU perf target (Threaded)"
command: >
julia --color=yes --threads 8 --project=perf perf/benchmark.jl
--config_file $PERF_CONFIG_PATH/bm_perf_target_threaded.yml
Expand All @@ -914,6 +914,24 @@ steps:
slurm_mem: 24GB
slurm_cpus_per_task: 8

- label: ":computer: Benchmark: GPU diag edmf"
command: >
julia --color=yes --project=perf perf/benchmark.jl
--config_file ${CONFIG_PATH}/aquaplanet_progedmf.yml
--job_id bm_diag_edmf_gpu
agents:
slurm_mem: 24GB
slurm_gpus: 1

- label: ":computer: Benchmark: GPU prog edmf"
command: >
julia --color=yes --project=perf perf/benchmark.jl
--config_file ${CONFIG_PATH}/aquaplanet_progedmf.yml
--job_id bm_prog_edmf_gpu
agents:
slurm_mem: 24GB
slurm_gpus: 1

- group: "Flame graphs"
steps:

Expand Down
Loading