From cdcd0a1ad1616837b2c415ef2c423340144d3b13 Mon Sep 17 00:00:00 2001 From: "Larsen, Steffen" Date: Fri, 2 Sep 2022 03:58:46 -0700 Subject: [PATCH] [SYCL] Remove host run and dependencies from SYCL/AOT tests This commit removes the host run and any assumptions and operations related to the host device from the tests in SYCL/AOT. Co-authored-by: Sachkov, Alexey Signed-off-by: Larsen, Steffen --- SYCL/AOT/multiple-devices.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/SYCL/AOT/multiple-devices.cpp b/SYCL/AOT/multiple-devices.cpp index 996392c7e2..04f88eadc3 100644 --- a/SYCL/AOT/multiple-devices.cpp +++ b/SYCL/AOT/multiple-devices.cpp @@ -15,26 +15,22 @@ // CPU, GPU, FPGA // RUN: %clangxx -fsycl -fsycl-targets=spir64_x86_64,spir64_gen,spir64_fpga -Xsycl-target-backend=spir64_gen %gpu_aot_target_opts %t.o -o %t_all_aot.out -// RUN: %HOST_RUN_PLACEHOLDER %t_all_aot.out // RUN: %CPU_RUN_PLACEHOLDER %t_all_aot.out // RUN: %GPU_RUN_PLACEHOLDER %t_all_aot.out // RUN: %ACC_RUN_PLACEHOLDER %t_all_aot.out // CPU, GPU // RUN: %clangxx -fsycl -fsycl-targets=spir64_x86_64,spir64_gen -Xsycl-target-backend=spir64_gen %gpu_aot_target_opts %t.o -o %t_cpu_gpu.out -// RUN: %HOST_RUN_PLACEHOLDER %t_cpu_gpu.out // RUN: %CPU_RUN_PLACEHOLDER %t_cpu_gpu.out // RUN: %GPU_RUN_PLACEHOLDER %t_cpu_gpu.out // CPU, FPGA // RUN: %clangxx -fsycl -fsycl-targets=spir64_x86_64,spir64_fpga %t.o -o %t_cpu_fpga.out -// RUN: %HOST_RUN_PLACEHOLDER %t_cpu_fpga.out // RUN: %CPU_RUN_PLACEHOLDER %t_cpu_fpga.out // RUN: %ACC_RUN_PLACEHOLDER %t_cpu_fpga.out // GPU, FPGA // RUN: %clangxx -fsycl -fsycl-targets=spir64_gen,spir64_fpga -Xsycl-target-backend=spir64_gen %gpu_aot_target_opts %t.o -o %t_gpu_fpga.out -// RUN: %HOST_RUN_PLACEHOLDER %t_gpu_fpga.out // RUN: %GPU_RUN_PLACEHOLDER %t_gpu_fpga.out // RUN: %ACC_RUN_PLACEHOLDER %t_gpu_fpga.out