Skip to content

Commit

Permalink
Widen gpu allocations buffer
Browse files Browse the repository at this point in the history
  • Loading branch information
charleskawczynski committed Apr 5, 2024
1 parent b59fe2a commit 6c2fdfc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion perf/flame.jl
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,10 @@ using Test
# Threaded/gpu allocations are not deterministic, so let's add a buffer
# TODO: remove buffer, and threaded tests, when
# threaded/unthreaded functions are unified
buffer = if any(x -> occursin(x, job_id), ("threaded", "gpu"))
buffer = if any(x -> occursin(x, job_id), ("threaded",))
1.8
elseif any(x -> occursin(x, job_id), ("gpu",))
5
else
1.1
end
Expand Down

0 comments on commit 6c2fdfc

Please sign in to comment.