Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

[SYCL] Fix test issues #54

Merged
merged 2 commits into from
Nov 16, 2020
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
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// RUN: %GPU_RUN_PLACEHOLDER %t.out

// TODO: Support global work offset on Level Zero.
// XFAIL: level_zero
// UNSUPPORTED: level_zero

//==- free_function_queries.cpp - SYCL free function queries test -=//
//
Expand Down
1 change: 0 additions & 1 deletion SYCL/ESIMD/matrix_transpose_glb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
// REQUIRES: linux && gpu && opencl
// RUN: %clangxx-esimd -fsycl %s -o %t.out
// RUN: %ESIMD_RUN_PLACEHOLDER %t.out
// XFAIL: linux

#include "esimd_test_utils.hpp"

Expand Down
5 changes: 3 additions & 2 deletions SYCL/Scheduler/HandleException.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
// RUN: %CPU_RUN_PLACEHOLDER %t.out
// RUN: %ACC_RUN_PLACEHOLDER %t.out
// RUN: %GPU_RUN_PLACEHOLDER %t.out
// XFAIL:gpu

// Expected exception is generated for OpenCL backend only.
// REQUIRES: opencl
#include <CL/sycl.hpp>
#include <array>

Expand All @@ -13,7 +14,7 @@ constexpr access::mode sycl_read = access::mode::read;
constexpr access::mode sycl_write = access::mode::write;

constexpr unsigned MAX_WG_SIZE = 4;
constexpr unsigned SIZE = 5;
constexpr unsigned SIZE = 8;
using ArrayType = std::array<unsigned, SIZE>;

class kernelCompute;
Expand Down