Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions buildbot/osuosl/master/config/builders.py
Original file line number Diff line number Diff line change
Expand Up @@ -2242,6 +2242,24 @@ def collapseRequestsDoxygen(master, builder, req1, req2):
add_lit_checks=["check-clang", "check-flang", "check-flang-rt", "check-llvm", "check-lld", "check-mlir", "check-offload"],
add_openmp_lit_args=["--time-tests", "--timeout 100", "--xfail=affinity/format/proc_bind.c"],
)},
# SYCL GPU builders.

{'name' : "intel-sycl-gpu",
'tags' : ["sycl"],
'collapseRequests': False,
'workernames' : ["intel-sycl-gpu-01"],
'builddir': "intel-sycl-gpu",
'factory' : UnifiedTreeBuilder.getCmakeWithNinjaBuildFactory(
clean=True,
enable_runtimes=['openmp', 'offload', 'libsycl'],
depends_on_projects=['llvm', 'clang', 'libsycl', 'offload', 'openmp', 'lld'],
extra_configure_args=[
"-DLLVM_CCACHE_BUILD=ON",
"-DLLVM_TARGETS_TO_BUILD=host;SPIRV",
"-DLLVM_ENABLE_ASSERTIONS=ON",
"-DLLVM_INSTALL_UTILS=ON",
"-DCLANG_DEFAULT_LINKER=lld",
])},


# Whole-toolchain builders.
Expand Down
3 changes: 3 additions & 0 deletions buildbot/osuosl/master/config/workers.py
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,9 @@ def get_all():
create_worker("rocm-docker-rhel-9", properties={'jobs': 32}, max_builds=1),
create_worker("rocm-docker-rhel-8", properties={'jobs': 32}, max_builds=1),

# SYCL GPU
create_worker("intel-sycl-gpu-01", properties={'jobs': 192}, max_builds=1),

# Containerized builder for third party libraries using HIP
create_worker("ext_buildbot_hw_05-hip-docker", properties={'jobs': 32}, max_builds=1),

Expand Down