[PATCH] D48739: add a new ppc64le OpenMP buildbot

Samer Yacob via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Jun 28 13:15:55 PDT 2018


szyacob created this revision.
szyacob added a reviewer: gkistanova.
szyacob added a project: Zorg.
Herald added subscribers: llvm-commits, guansong.

the following are changes to add a new buildbot slave for OpenMP build/test with offloading support.


Repository:
  rL LLVM

https://reviews.llvm.org/D48739

Files:
  buildbot/osuosl/master/config/builders.py
  buildbot/osuosl/master/config/slaves.py


Index: buildbot/osuosl/master/config/slaves.py
===================================================================
--- buildbot/osuosl/master/config/slaves.py
+++ buildbot/osuosl/master/config/slaves.py
@@ -113,6 +113,9 @@
         # POWER 8 PowerPC little endian (powerpc64le) with NVIDIA GPUs
         create_slave("ppc64le-nvidia-K40", properties={'jobs': 4}, max_builds=1),

+        # POWER 8 PowerPC little endian (powerpc64le) with NVIDIA Pascal GPUs
+        create_slave("ppc64le-nvidia-P100", properties={'jobs': 4}, max_builds=1),
+
         # Ubuntu x86-64, Intel(R) Xeon(R) CPU E5-2680 0 @ 2.70GHz
         create_slave("hexagon-build-02", properties={'jobs': 12, 'loadaverage': 32},
             max_builds=1),
Index: buildbot/osuosl/master/config/builders.py
===================================================================
--- buildbot/osuosl/master/config/builders.py
+++ buildbot/osuosl/master/config/builders.py
@@ -1265,6 +1265,14 @@
                          cxx_compiler="clang++",
                          env={'PATH':'/home/bbot/opt/cmake/bin:/home/bbot/opt/ninja/bin:/usr/local/bin:/usr/bin:/bin'})},

+        {'name': "openmp-clang-ppc64le-linux-rhel",
+         'slavenames':["ppc64le_nvidia_P100"],
+         'builddir':"openmp-clang-ppc64le-linux-rhel",
+         'factory' : OpenMPBuilder.getOpenMPCMakeBuildFactory(
+                         c_compiler="clang",
+                         cxx_compiler="clang++",
+                         env={'PATH':'/opt/llvm/bin:/opt/at11.0/bin:/usr/local/bin:/usr/bin:/bin'})},
+
         ]

 def _get_libcxx_builders():


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D48739.153375.patch
Type: text/x-patch
Size: 1594 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180628/8834ece6/attachment.bin>


More information about the llvm-commits mailing list