diff --git a/SYCL/KernelParams/array-kernel-param-nested-run.cpp b/SYCL/KernelParams/array-kernel-param-nested-run.cpp index 67900e736e..25f67077e6 100644 --- a/SYCL/KernelParams/array-kernel-param-nested-run.cpp +++ b/SYCL/KernelParams/array-kernel-param-nested-run.cpp @@ -1,7 +1,6 @@ // This test checks kernel execution with array parameters inside structs. // RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s -o %t.out -// RUN: %HOST_RUN_PLACEHOLDER %t.out // RUN: %CPU_RUN_PLACEHOLDER %t.out // RUN: %GPU_RUN_PLACEHOLDER %t.out // RUN: %ACC_RUN_PLACEHOLDER %t.out @@ -141,7 +140,7 @@ bool run_tests() { } auto D = Q.get_device(); - const char *devType = D.is_host() ? "Host" : D.is_cpu() ? "CPU" : "GPU"; + const char *devType = D.is_cpu() ? "CPU" : "GPU"; std::cout << passCount << " of " << testCount << " tests passed on " << devType << "\n"; @@ -152,7 +151,7 @@ int main(int argc, char *argv[]) { bool passed = true; default_selector selector{}; auto D = selector.select_device(); - const char *devType = D.is_host() ? "Host" : D.is_cpu() ? "CPU" : "GPU"; + const char *devType = D.is_cpu() ? "CPU" : "GPU"; std::cout << "Running on device " << devType << " (" << D.get_info() << ")\n"; try { diff --git a/SYCL/KernelParams/array-kernel-param-run.cpp b/SYCL/KernelParams/array-kernel-param-run.cpp index c93a83ee53..2282abf502 100644 --- a/SYCL/KernelParams/array-kernel-param-run.cpp +++ b/SYCL/KernelParams/array-kernel-param-run.cpp @@ -1,7 +1,6 @@ // This test checks kernel execution with array kernel parameters. // RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s -o %t.out -// RUN: %HOST_RUN_PLACEHOLDER %t.out // RUN: %CPU_RUN_PLACEHOLDER %t.out // RUN: %GPU_RUN_PLACEHOLDER %t.out // RUN: %ACC_RUN_PLACEHOLDER %t.out @@ -201,7 +200,7 @@ bool run_tests() { } auto D = Q.get_device(); - const char *devType = D.is_host() ? "Host" : D.is_cpu() ? "CPU" : "GPU"; + const char *devType = D.is_cpu() ? "CPU" : "GPU"; std::cout << passCount << " of " << testCount << " tests passed on " << devType << "\n"; @@ -212,7 +211,7 @@ int main(int argc, char *argv[]) { bool passed = true; default_selector selector{}; auto D = selector.select_device(); - const char *devType = D.is_host() ? "Host" : D.is_cpu() ? "CPU" : "GPU"; + const char *devType = D.is_cpu() ? "CPU" : "GPU"; std::cout << "Running on device " << devType << " (" << D.get_info() << ")\n"; try { diff --git a/SYCL/KernelParams/non-standard-layout.cpp b/SYCL/KernelParams/non-standard-layout.cpp index 927e675703..bc9bdca552 100644 --- a/SYCL/KernelParams/non-standard-layout.cpp +++ b/SYCL/KernelParams/non-standard-layout.cpp @@ -1,5 +1,4 @@ // RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s -o %t.out -// RUN: %HOST_RUN_PLACEHOLDER %t.out // RUN: %CPU_RUN_PLACEHOLDER %t.out // RUN: %GPU_RUN_PLACEHOLDER %t.out // RUN: %ACC_RUN_PLACEHOLDER %t.out diff --git a/SYCL/KernelParams/struct_kernel_param.cpp b/SYCL/KernelParams/struct_kernel_param.cpp index f02f0f538a..93245e2c54 100644 --- a/SYCL/KernelParams/struct_kernel_param.cpp +++ b/SYCL/KernelParams/struct_kernel_param.cpp @@ -1,5 +1,4 @@ // RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s -o %t.out -// RUN: %HOST_RUN_PLACEHOLDER %t.out // RUN: %CPU_RUN_PLACEHOLDER %t.out // RUN: %GPU_RUN_PLACEHOLDER %t.out // RUN: %ACC_RUN_PLACEHOLDER %t.out diff --git a/SYCL/KernelParams/union_kernel_param.cpp b/SYCL/KernelParams/union_kernel_param.cpp index 0cacf310a8..fa7aa00d80 100644 --- a/SYCL/KernelParams/union_kernel_param.cpp +++ b/SYCL/KernelParams/union_kernel_param.cpp @@ -1,7 +1,6 @@ // This test checks kernel execution with union type as kernel parameters. // RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s -o %t.out -// RUN: %HOST_RUN_PLACEHOLDER %t.out // RUN: %CPU_RUN_PLACEHOLDER %t.out // RUN: %GPU_RUN_PLACEHOLDER %t.out // RUN: %ACC_RUN_PLACEHOLDER %t.out