Skip to content

Commit

Permalink
Merge pull request #715 from CliMA/gb/fix_bk
Browse files Browse the repository at this point in the history
Fix flame files not uploaded to buildkite
  • Loading branch information
Sbozzolo authored Aug 5, 2024
2 parents c57af01 + 405e2f5 commit 5197e47
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ steps:
agents:
slurm_ntasks: 1
slurm_gres: "gpu:p100:1"
artifact_paths: "experiments/integrated/performance/*gpu*html"
artifact_paths: "experiments/integrated/performance/flame*html"

- label: "Global Bucket on GPU (functional albedo)"
key: "global_bucket_function_gpu"
Expand Down
4 changes: 2 additions & 2 deletions experiments/integrated/performance/profile_allocations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ if PROFILING
results = Profile.fetch()
flame_file = joinpath(savedir, "flame_$(device_suffix).html")
ProfileCanvas.html_file(flame_file, results)
@info "Save compute flame to flame_file"
@info "Save compute flame to $(flame_file)"
Y, p = set_initial_conditions(land, t0)
updateat = Array(t0:dt:tf)
drivers = ClimaLand.get_drivers(land)
Expand All @@ -424,5 +424,5 @@ if PROFILING
profile = ProfileCanvas.view_allocs(results)
alloc_flame_file = joinpath(savedir, "alloc_flame_$(device_suffix).html")
ProfileCanvas.html_file(alloc_flame_file, profile)
@info "Save allocation flame to alloc_flame_file"
@info "Save allocation flame to $(alloc_flame_file)"
end

0 comments on commit 5197e47

Please sign in to comment.