[zorg] r250562 - Adjusted the jobs parameters for builder "clang-ppc64-elf-linux" and "ppc64le-clanglnt" to take advantage of the new and freed up CPUs.

Galina Kistanova via llvm-commits llvm-commits at lists.llvm.org
Fri Oct 16 15:34:26 PDT 2015


Author: gkistanova
Date: Fri Oct 16 17:34:26 2015
New Revision: 250562

URL: http://llvm.org/viewvc/llvm-project?rev=250562&view=rev
Log:
Adjusted the jobs parameters for builder "clang-ppc64-elf-linux" and "ppc64le-clanglnt" to take advantage of the new and freed up CPUs.

Patch by Bill Seurer.

Modified:
    zorg/trunk/buildbot/osuosl/master/config/builders.py
    zorg/trunk/buildbot/osuosl/master/config/slaves.py

Modified: zorg/trunk/buildbot/osuosl/master/config/builders.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/buildbot/osuosl/master/config/builders.py?rev=250562&r1=250561&r2=250562&view=diff
==============================================================================
--- zorg/trunk/buildbot/osuosl/master/config/builders.py (original)
+++ zorg/trunk/buildbot/osuosl/master/config/builders.py Fri Oct 16 17:34:26 2015
@@ -289,7 +289,7 @@ def _get_clang_builders():
          'builddir' :"clang-ppc64-1",
          'factory' : LNTBuilder.getLNTFactory(triple='ppc64-elf-linux1',
                                               nt_flags=['--cflag','-mcpu=native', '-j8'],
-                                              jobs=4,  use_pty_in_tests=True,
+                                              jobs=16,  use_pty_in_tests=True,
                                               testerName='O3-plain', run_cxx_tests=True)},
 
         {'name' : "clang-ppc64-elf-linux2",
@@ -305,8 +305,8 @@ def _get_clang_builders():
          'slavenames' :["ppc64le-clang-lnt-test"],
          'builddir' :"clang-lnt-ppc64le-1",
          'factory' : LNTBuilder.getLNTFactory(triple='ppc64le-elf-linux1',
-                                              nt_flags=['--cflag','-mcpu=native'],
-                                              jobs=4,  use_pty_in_tests=True,
+                                              nt_flags=['--cflag','-mcpu=native', '-j6'],
+                                              jobs=6,  use_pty_in_tests=True,
                                               testerName='ppc64le-plain', run_cxx_tests=True)},
 
         {'name' : "ppc64le-clang",

Modified: zorg/trunk/buildbot/osuosl/master/config/slaves.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/buildbot/osuosl/master/config/slaves.py?rev=250562&r1=250561&r2=250562&view=diff
==============================================================================
--- zorg/trunk/buildbot/osuosl/master/config/slaves.py (original)
+++ zorg/trunk/buildbot/osuosl/master/config/slaves.py Fri Oct 16 17:34:26 2015
@@ -84,16 +84,16 @@ def get_build_slaves():
         create_slave("hpproliant1", properties={'jobs': 6}, max_builds=1),
 
         # POWER7 PowerPC big endian (powerpc64)
-        create_slave("ppc64be-llvm", properties={'jobs': 8}, max_builds=2),
-        create_slave("ppc64be-clang-lnt-test", properties={'jobs': 8}, max_builds=2),
-        create_slave("ppc64be-clang-multistage-test", properties={'jobs': 8}, max_builds=2),
+        create_slave("ppc64be-llvm", properties={'jobs': 8}, max_builds=1),
+        create_slave("ppc64be-clang-lnt-test", properties={'jobs': 16}, max_builds=1),
+        create_slave("ppc64be-clang-multistage-test", properties={'jobs': 16}, max_builds=1),
         create_slave("ppc64be-sanitizer", properties={'jobs': 8}, max_builds=1),
-        create_slave("ppc64be-llvm-quick", properties={'jobs': 8}, max_builds=2),
+        create_slave("ppc64be-llvm-quick", properties={'jobs': 8}, max_builds=1),
 
         # POWER 8 PowerPC little endian (powerpc64le)
         create_slave("ppc64le-llvm", properties={'jobs': 4}, max_builds=1),
-        create_slave("ppc64le-clang-lnt-test", properties={'jobs': 4}, max_builds=1),
-        create_slave("ppc64le-clang-multistage-test", properties={'jobs': 4}, max_builds=1),
+        create_slave("ppc64le-clang-lnt-test", properties={'jobs': 6}, max_builds=1),
+        create_slave("ppc64le-clang-multistage-test", properties={'jobs': 6}, max_builds=1),
         create_slave("ppc64le-sanitizer", properties={'jobs': 4}, max_builds=1),
 
         # Debian 86_64, 2 x 6-core Opteron 2.6 GHz




More information about the llvm-commits mailing list