From 0d46bcf5ff431dde393d797a9549043b4e28093a Mon Sep 17 00:00:00 2001 From: "Larsen, Steffen" Date: Fri, 2 Sep 2022 04:19:27 -0700 Subject: [PATCH] [SYCL] Remove host run and dependencies from SYCL/OnlineCompiler tests This commit removes the host run and any assumptions and operations related to the host device from the tests in SYCL/OnlineCompiler. Co-authored-by: Sachkov, Alexey Signed-off-by: Larsen, Steffen --- SYCL/OnlineCompiler/online_compiler_L0.cpp | 2 -- SYCL/OnlineCompiler/online_compiler_OpenCL.cpp | 2 -- 2 files changed, 4 deletions(-) diff --git a/SYCL/OnlineCompiler/online_compiler_L0.cpp b/SYCL/OnlineCompiler/online_compiler_L0.cpp index 681deecdd7..239a57dc62 100644 --- a/SYCL/OnlineCompiler/online_compiler_L0.cpp +++ b/SYCL/OnlineCompiler/online_compiler_L0.cpp @@ -3,8 +3,6 @@ // RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple -DRUN_KERNELS %level_zero_options %s -o %t.out // RUN: %CPU_RUN_PLACEHOLDER %t.out // RUN: %GPU_RUN_PLACEHOLDER %t.out -// RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %level_zero_options %s -o %th.out -// RUN: %HOST_RUN_PLACEHOLDER %th.out // This test checks ext::intel feature class online_compiler for Level-Zero. // All Level-Zero specific code is kept here and the common part that can be diff --git a/SYCL/OnlineCompiler/online_compiler_OpenCL.cpp b/SYCL/OnlineCompiler/online_compiler_OpenCL.cpp index 91d8057caa..faaa41f36c 100644 --- a/SYCL/OnlineCompiler/online_compiler_OpenCL.cpp +++ b/SYCL/OnlineCompiler/online_compiler_OpenCL.cpp @@ -3,8 +3,6 @@ // RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s -DRUN_KERNELS %opencl_lib -o %t.out // RUN: %CPU_RUN_PLACEHOLDER %t.out // RUN: %GPU_RUN_PLACEHOLDER %t.out -// RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s %opencl_lib -o %th.out -// RUN: %HOST_RUN_PLACEHOLDER %th.out // This test checks ext::intel feature class online_compiler for OpenCL. // All OpenCL specific code is kept here and the common part that can be