diff --git a/SYCL/GroupAlgorithm/SYCL2020/permute_select.cpp b/SYCL/GroupAlgorithm/SYCL2020/permute_select.cpp index d67c67a178..aa1a747acf 100644 --- a/SYCL/GroupAlgorithm/SYCL2020/permute_select.cpp +++ b/SYCL/GroupAlgorithm/SYCL2020/permute_select.cpp @@ -16,10 +16,6 @@ int main() { queue Queue; - if (Queue.get_device().is_host()) { - std::cout << "Skipping test\n"; - return 0; - } check(Queue); check(Queue); check(Queue); diff --git a/SYCL/GroupAlgorithm/SYCL2020/shift_left_right.cpp b/SYCL/GroupAlgorithm/SYCL2020/shift_left_right.cpp index e3c97cac0e..c68c1c3fae 100644 --- a/SYCL/GroupAlgorithm/SYCL2020/shift_left_right.cpp +++ b/SYCL/GroupAlgorithm/SYCL2020/shift_left_right.cpp @@ -15,10 +15,6 @@ int main() { queue Queue; - if (Queue.get_device().is_host()) { - std::cout << "Skipping test\n"; - return 0; - } check(Queue); check(Queue); check(Queue); diff --git a/SYCL/GroupAlgorithm/all_of.cpp b/SYCL/GroupAlgorithm/all_of.cpp index 75ba1d0d44..e7d73814a1 100644 --- a/SYCL/GroupAlgorithm/all_of.cpp +++ b/SYCL/GroupAlgorithm/all_of.cpp @@ -1,5 +1,4 @@ // RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s -I . -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/GroupAlgorithm/any_of.cpp b/SYCL/GroupAlgorithm/any_of.cpp index 5892d7a816..a847f92bad 100644 --- a/SYCL/GroupAlgorithm/any_of.cpp +++ b/SYCL/GroupAlgorithm/any_of.cpp @@ -1,5 +1,4 @@ // RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s -I . -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/GroupAlgorithm/back_to_back_collectives.cpp b/SYCL/GroupAlgorithm/back_to_back_collectives.cpp index a7080fa3ae..ca4759e8c9 100644 --- a/SYCL/GroupAlgorithm/back_to_back_collectives.cpp +++ b/SYCL/GroupAlgorithm/back_to_back_collectives.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 @@ -15,10 +14,6 @@ class back_to_back; int main() { queue q; - if (q.get_device().is_host()) { - std::cout << "Skipping test\n"; - return 0; - } // Use max work-group size to maximize chance of race auto KernelID = get_kernel_id(); diff --git a/SYCL/GroupAlgorithm/broadcast.cpp b/SYCL/GroupAlgorithm/broadcast.cpp index 5320266a90..9d80740d17 100644 --- a/SYCL/GroupAlgorithm/broadcast.cpp +++ b/SYCL/GroupAlgorithm/broadcast.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/GroupAlgorithm/exclusive_scan.cpp b/SYCL/GroupAlgorithm/exclusive_scan.cpp index 9117254a80..729f1318eb 100644 --- a/SYCL/GroupAlgorithm/exclusive_scan.cpp +++ b/SYCL/GroupAlgorithm/exclusive_scan.cpp @@ -1,5 +1,4 @@ // RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s -I . -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/GroupAlgorithm/inclusive_scan.cpp b/SYCL/GroupAlgorithm/inclusive_scan.cpp index 9b3472eeff..9e90f51134 100644 --- a/SYCL/GroupAlgorithm/inclusive_scan.cpp +++ b/SYCL/GroupAlgorithm/inclusive_scan.cpp @@ -1,5 +1,4 @@ // RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s -I . -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/GroupAlgorithm/leader.cpp b/SYCL/GroupAlgorithm/leader.cpp index 3b07aefcf2..ac4fd455ed 100644 --- a/SYCL/GroupAlgorithm/leader.cpp +++ b/SYCL/GroupAlgorithm/leader.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/GroupAlgorithm/none_of.cpp b/SYCL/GroupAlgorithm/none_of.cpp index 3903d8c965..641eab921d 100644 --- a/SYCL/GroupAlgorithm/none_of.cpp +++ b/SYCL/GroupAlgorithm/none_of.cpp @@ -1,5 +1,4 @@ // RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s -I . -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/GroupAlgorithm/reduce.cpp b/SYCL/GroupAlgorithm/reduce.cpp index a6a1e8c27d..5fd10e24ed 100644 --- a/SYCL/GroupAlgorithm/reduce.cpp +++ b/SYCL/GroupAlgorithm/reduce.cpp @@ -1,5 +1,4 @@ // RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s -I . -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