Skip to content

Commit 6e9ccdb

Browse files
authored
[AMDGPU][libc] Re-enable batching to keep up (#340)
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.
1 parent 489e9fe commit 6e9ccdb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

buildbot/osuosl/master/config/builders.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1965,7 +1965,8 @@
19651965
{'name' : "openmp-offload-libc-amdgpu-runtime",
19661966
'tags' : ["openmp"],
19671967
'workernames' : ["omp-vega20-1"],
1968-
'collapseRequests' : False,
1968+
# We would like to never collapse, but it seems the load is too high on that system to keep up.
1969+
'collapseRequests' : True,
19691970
'builddir': "openmp-offload-libc-amdgpu-runtime",
19701971
'factory' : OpenMPBuilder.getOpenMPCMakeBuildFactory(
19711972
clean=True,

0 commit comments

Comments
 (0)