[PATCH] D35580: Add an X86 with SDE clang builder and slave

Elad Cohen via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Jul 19 13:02:07 PDT 2017


This revision was automatically updated to reflect the committed changes.
Closed by commit rL308516: Add an X86-64 with SDE clang builder and slave (authored by eladcohen).

Changed prior to commit:
  https://reviews.llvm.org/D35580?vs=107170&id=107357#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D35580

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


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
@@ -214,6 +214,9 @@
         # X86_64 AVX2, Ubuntu 16.04.2, Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz
         create_slave("avx2-intel64", properties={'jobs': 80}, max_builds=1),
 
+        # X86_64 with SDE, Ubuntu 16.04.2, Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz
+        create_slave("sde-avx512-intel64", properties={'jobs': 80}, max_builds=1),
+
         # Defunct.
         # Debian 86_64, 2 x 6-core Opteron 2.6 GHz
         #create_slave("osu8", properties={'jobs' : 6}, max_builds=2),
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
@@ -649,6 +649,26 @@
                                "-DCMAKE_CXX_FLAGS='-march=broadwell'",
                                "-DLLVM_TARGETS_TO_BUILD='X86'"])},
 
+        ## X86_64 Clang+LLVM Run test-suite targeting AVX512 on SDE (Emulator)
+        {'name': "clang-cmake-x86_64-sde-avx512-linux",
+         'slavenames':["sde-avx512-intel64"],
+         'builddir':"clang-cmake-x86_64-sde-avx512-linux",
+         'factory' : ClangBuilder.getClangCMakeBuildFactory(
+             clean=False,
+             checkout_clang_tools_extra=False,
+             checkout_compiler_rt=False,
+             checkout_lld=False,
+             test=True,
+             useTwoStage=False,
+             runTestSuite=True,
+             nt_flags=['--cflag', '-march=skylake-avx512', '--threads=80',
+                 '--build-threads=80', '--make-param', 'RUNUNDER="sde64 -skx --"', '--make-param', 'USER_MODE_EMULATION=1'],
+             env={'PATH':'~/tools/sde/latest:/usr/bin/ccache:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'},
+             extra_cmake_args=["-DLLVM_ENABLE_ASSERTIONS=ON",
+                               "-DCMAKE_C_FLAGS='-march=broadwell'",
+                               "-DCMAKE_CXX_FLAGS='-march=broadwell'",
+                               "-DLLVM_TARGETS_TO_BUILD='X86'"])},
+
 #        {'name' : "clang-3stage-ubuntu",
 #         'slavenames' : ["ps4-buildslave1a"],
 #         'builddir' : "clang-3stage-ubuntu",


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D35580.107357.patch
Type: text/x-patch
Size: 2427 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170719/9d6a8c81/attachment.bin>


More information about the llvm-commits mailing list