Skip to content

Commit

Permalink
rev1
Browse files Browse the repository at this point in the history
  • Loading branch information
LenkaNovak committed Jan 30, 2023
1 parent 84dbf25 commit 06f719b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,20 +171,20 @@ steps:
slurm_mem_per_cpu: 16G

# performance tests
- label: ":rocket: performance: flame graph and allocation tests"
- label: ":rocket: flame graph and allocation tests: default_modular"
command: "julia --color=yes --project=perf perf/flame.jl --run_name 1"
artifact_paths: "perf/output/*"
artifact_paths: "perf/output/default_modular/*"
agents:
slurm_mem: 20GB

- label: ":rocket: performance: flame graph and allocation tests"
- label: ":rocket: flame graph and allocation tests: perf_coarse_single_modular"
command: "julia --color=yes --project=perf perf/flame.jl --run_name 2"
artifact_paths: "perf/output/*"
artifact_paths: "perf/output/perf_coarse_single_modular/*"
agents:

slurm_mem: 20GB
- label: ":rocket: performance: flame graph and allocation tests"
- label: ":rocket: flame graph and allocation tests: target_amip_n32_shortrun"
command: "julia --color=yes --project=perf perf/flame.jl --run_name 3"
artifact_paths: "perf/output/*"
artifact_paths: "perf/output/target_amip_n32_shortrun/*"
agents:
slurm_mem: 20GB
2 changes: 1 addition & 1 deletion perf/flame.jl
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ end

# produce flamegraph
if haskey(ENV, "BUILDKITE_COMMIT") || haskey(ENV, "BUILDKITE_BRANCH")
output_dir = "perf/output/"
output_dir = "perf/output/$run_name/"
mkpath(output_dir)
ProfileCanvas.html_file(joinpath(output_dir, "flame.html"))
else
Expand Down

0 comments on commit 06f719b

Please sign in to comment.