Skip to content
Merged
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
26 changes: 26 additions & 0 deletions buildbot/dependency.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[VERSIONS]
# https://github.com/intel/llvm/releases/download/2020-03/oclcpuexp-2020.10.4.0.15_rel.tar.gz
ocl_cpu_rt_ver=2020.10.4.0.15
# https://github.com/intel/llvm/releases/download/2020-03/win-oclcpuexp-2020.10.4.0.15_rel.zip
ocl_cpu_rt_ver_win=2020.10.4.0.15
# https://github.com/intel/compute-runtime/releases/tag/20.12.16259
ocl_gpu_rt_ver=l0-20.12.16259
# https://downloadcenter.intel.com/download/29557/Intel-Graphics-Windows-10-DCH-Drivers
ocl_gpu_rt_ver_win=ci-neo-015900
intel_sycl_ver=build
# https://github.com/oneapi-src/oneTBB/releases/download/v2020.2/tbb-2020.2-lin.tgz
tbb_ver=20200121_111047
# https://github.com/oneapi-src/oneTBB/releases/download/v2020.2/tbb-2020.2-win.zip
tbb_ver_win=20200124_000000
# TODO: provide URL for Linux OpenCL emulator of FPGA device
fpga_ver=20200216_000000
# TODO: provide URL for Windows OpenCL emulator of FPGA device
fpga_ver_win=20200216_000000

[DRIVER VERSIONS]
cpu_driver_lin=2020.10.4.0.15
cpu_driver_win=2020.10.4.0.15
gpu_driver_lin=20.12.16259
gpu_driver_win=ci-neo-015900
fpga_driver_lin=2020.9.2.0
fpga_driver_win=2020.9.2.0
3 changes: 3 additions & 0 deletions sycl/test/hier_par/hier_par_basic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
// RUN: %GPU_RUN_PLACEHOLDER %t.out
// RUN: %ACC_RUN_PLACEHOLDER %t.out

// The tests is failing on CPU RT 2020.10.4.0.15
// XFAIL: cpu

// This test checks hierarchical parallelism invocation APIs, but without any
// data or code with side-effects between the work group and work item scopes.

Expand Down
3 changes: 3 additions & 0 deletions sycl/test/hier_par/hier_par_wgscope.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
// RUN: %GPU_RUN_PLACEHOLDER %t.out
// RUN: %ACC_RUN_PLACEHOLDER %t.out

// Application built with -O0 crashes on OpenCL CPU (2020.10.4.0.15)
// XFAIL: system-windows && cpu && opencl

// This test checks correctness of hierarchical kernel execution when there is
// code and data in the work group scope.

Expand Down
3 changes: 2 additions & 1 deletion sycl/test/spec_const/spec_const_hw.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
// RUN: %ACC_RUN_PLACEHOLDER %t.out
// TODO: re-enable after CI drivers are updated to newer which support spec
// constants:
// XFAIL: acc,cpu,cuda,gen
// XFAIL: linux
// UNSUPPORTED: cuda
Copy link
Contributor

@bader bader May 17, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FYI. Post-commit testing is failing due to “expected to fail” condition.
There are a few ways how to fix it, but I guess the easiest one is to replace:

// UNSUPPORTED: cuda

with

// REQUIRES: opencl

//
//==----------- spec_const_hw.cpp ------------------------------------------==//
//
Expand Down
3 changes: 2 additions & 1 deletion sycl/test/spec_const/spec_const_redefine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
// RUN: env SYCL_PI_TRACE=2 %ACC_RUN_PLACEHOLDER %t.out 2>&1 %ACC_CHECK_PLACEHOLDER
// TODO: re-enable after CI drivers are updated to newer which support spec
// constants:
// XFAIL: acc,cpu,cuda,gen
// XFAIL: linux
// UNSUPPORTED: cuda
//
//==----------- spec_const_redefine.cpp ------------------------------------==//
//
Expand Down