Skip to content

Commit

Permalink
[AMDGPU][libc] Re-enable batching to keep up
Browse files Browse the repository at this point in the history
The current config is unable to keep up with the load on that particular
bot, meaning that the build queue filled-up and was at several hours.
This reverts the introduced "neverCollapse" and does allow collapsing of
build requests.
  • Loading branch information
jplehr committed Dec 12, 2024
1 parent 489e9fe commit 971c1d0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion buildbot/osuosl/master/config/builders.py
Original file line number Diff line number Diff line change
Expand Up @@ -1965,7 +1965,8 @@
{'name' : "openmp-offload-libc-amdgpu-runtime",
'tags' : ["openmp"],
'workernames' : ["omp-vega20-1"],
'collapseRequests' : False,
# We would like to never collapse, but it seems the load is too high on that system to keep up.
'collapseRequests' : True,
'builddir': "openmp-offload-libc-amdgpu-runtime",
'factory' : OpenMPBuilder.getOpenMPCMakeBuildFactory(
clean=True,
Expand Down

0 comments on commit 971c1d0

Please sign in to comment.