[PATCH] D48739: add a new ppc64le OpenMP buildbot
Phabricator via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Jul 17 06:40:39 PDT 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rL337279: Add a new buildbot slave for OpenMP build/test with offloading support. (authored by kli, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D48739?vs=153375&id=155871#toc
Repository:
rL LLVM
https://reviews.llvm.org/D48739
Files:
zorg/trunk/buildbot/osuosl/master/config/builders.py
zorg/trunk/buildbot/osuosl/master/config/slaves.py
Index: zorg/trunk/buildbot/osuosl/master/config/builders.py
===================================================================
--- zorg/trunk/buildbot/osuosl/master/config/builders.py
+++ zorg/trunk/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():
Index: zorg/trunk/buildbot/osuosl/master/config/slaves.py
===================================================================
--- zorg/trunk/buildbot/osuosl/master/config/slaves.py
+++ zorg/trunk/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),
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D48739.155871.patch
Type: text/x-patch
Size: 1663 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180717/79d0878a/attachment.bin>
More information about the llvm-commits
mailing list