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
5 changes: 2 additions & 3 deletions sycl/test-e2e/Basic/fpga_tests/fpga_io_pipes.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
// REQUIRES: accelerator
// RUN: %{build} -o %t.out
// RUNx: %{run} %t.out
// RUN: %{build} -fsyntax-only -o %t.out
// TODO: launch the test if the feature is supported.
//==------------ fpga_io_pipes.cpp - SYCL FPGA pipes test ------------------==//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
Expand Down
6 changes: 4 additions & 2 deletions sycl/test-e2e/Graph/Explicit/host_task_last.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
// Extra run to check for leaks in Level Zero using UR_L0_LEAKS_DEBUG
// RUN: %if level_zero %{env SYCL_PI_LEVEL_ZERO_USE_IMMEDIATE_COMMANDLISTS=0 %{l0_leak_check} %{run} %t.out 2>&1 | FileCheck %s --implicit-check-not=LEAK %}

// Disabled due to https://github.com/intel/llvm/issues/14473
// clang-format off
// Extra run to check for immediate-command-list in Level Zero
// RUNx: %if level_zero %{env SYCL_PI_LEVEL_ZERO_USE_IMMEDIATE_COMMANDLISTS=1 %{l0_leak_check} %{run} %t.out 2>&1 | FileCheck %s --implicit-check-not=LEAK %}
// TODO: enable the run-line below when the issue is fixed - https://github.com/intel/llvm/issues/14473
// %if level_zero %{env SYCL_PI_LEVEL_ZERO_USE_IMMEDIATE_COMMANDLISTS=1 %{l0_leak_check} %{run} %t.out 2>&1 | FileCheck %s --implicit-check-not=LEAK %}
// clang-format on

// REQUIRES: aspect-usm_shared_allocations

Expand Down
6 changes: 4 additions & 2 deletions sycl/test-e2e/Graph/RecordReplay/host_task_last.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
// Extra run to check for leaks in Level Zero using UR_L0_LEAKS_DEBUG
// RUN: %if level_zero %{env SYCL_PI_LEVEL_ZERO_USE_IMMEDIATE_COMMANDLISTS=0 %{l0_leak_check} %{run} %t.out 2>&1 | FileCheck %s --implicit-check-not=LEAK %}

// Disabled due to https://github.com/intel/llvm/issues/14473
// clang-format off
// Extra run to check for immediate-command-list in Level Zero
// RUNx: %if level_zero %{env SYCL_PI_LEVEL_ZERO_USE_IMMEDIATE_COMMANDLISTS=1 %{l0_leak_check} %{run} %t.out 2>&1 | FileCheck %s --implicit-check-not=LEAK %}
// TODO: enable the run below when the issue is fixed - https://github.com/intel/llvm/issues/14473
// %if level_zero %{env SYCL_PI_LEVEL_ZERO_USE_IMMEDIATE_COMMANDLISTS=1 %{l0_leak_check} %{run} %t.out 2>&1 | FileCheck %s --implicit-check-not=LEAK %}
// clang-format on

// REQUIRES: aspect-usm_shared_allocations

Expand Down
5 changes: 2 additions & 3 deletions sycl/test-e2e/OptionalKernelFeatures/fp64-conv-emu.cpp
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
// REQUIRES: ocloc, gpu, linux
// REQUIRES: ocloc, gpu, linux, aspect-fp64
// UNSUPPORTED: cuda, hip

// RUN: %clangxx -fsycl -fsycl-targets=spir64_gen -Xsycl-target-backend "-device pvc" -fsycl-fp64-conv-emu -O0 %s -o %t_opt.out
// TODO: Enable when GPU driver is updated.
// RUNx: %{run} %t_opt.out
// RUN: %{run} %t_opt.out

// Tests that aspect::fp64 is not emitted correctly when -fsycl-fp64-conv-emu
// flag is used.
Expand Down
3 changes: 2 additions & 1 deletion sycl/test-e2e/Regression/isordered.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// REQUIRES: aspect-fp64, aspect-fp16
// RUN: %{build} -o %t.out
// RUNx: %{run} %t.out
// RUN: %{run} %t.out

#include <sycl/detail/core.hpp>

Expand Down
2 changes: 1 addition & 1 deletion sycl/test-e2e/Regression/mad_sat.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// RUN: %{build} -Wno-error=integer-overflow -Wno-error=implicitly-unsigned-literal -o %t.out
// RUNx: %{run} %t.out
// RUN: %{run} %t.out

#include <sycl/detail/core.hpp>

Expand Down
6 changes: 4 additions & 2 deletions sycl/test-e2e/SharedLib/use_with_dlopen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@
// RUN: %{run} %t3.out

// This causes SEG. FAULT.
// RUNx: %{compile} -o %t4.out -DRUN_LAST
// RUNx: %{run} %t4.out
// Enable the lines below when the issue is fixed:
// https://github.com/intel/llvm/issues/16031
// %{compile} -o %t4.out -DRUN_LAST
// %{run} %t4.out

#include <sycl/detail/core.hpp>

Expand Down
5 changes: 3 additions & 2 deletions sycl/test-e2e/SharedLib/use_with_dlopen_verify_cache.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@

// clang-format off
// This causes SEG. FAULT.
// RUNx: %{compile} -DRUN_LAST
// RUNx: env SYCL_UR_TRACE=2 %{run} %t.out 2>&1 | FileCheck %s --check-prefixes=CHECK-LAST,CHECK --implicit-check-not=piProgramBuild
// Enable the lines below when the issue is fixed - https://github.com/intel/llvm/issues/16031
// %{compile} -DRUN_LAST
// env SYCL_UR_TRACE=2 %{run} %t.out 2>&1 | FileCheck %s --check-prefixes=CHECK-LAST,CHECK --implicit-check-not=piProgramBuild
// clang-format on

#include <sycl/detail/core.hpp>
Expand Down
Loading