Skip to content

[SYCL] Remove mentions of host device from in-tree LIT tests #6683

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s -o %t.out
// RUN: %RUN_ON_HOST %t.out
// RUN: %t.out

#include <sycl/sycl.hpp>

Expand Down
64 changes: 0 additions & 64 deletions sycl/test/basic_tests/built-ins.cpp

This file was deleted.

84 changes: 0 additions & 84 deletions sycl/test/basic_tests/context.cpp

This file was deleted.

102 changes: 0 additions & 102 deletions sycl/test/basic_tests/device.cpp

This file was deleted.

40 changes: 0 additions & 40 deletions sycl/test/basic_tests/event_async_exception.cpp

This file was deleted.

2 changes: 1 addition & 1 deletion sycl/test/basic_tests/exceptions-SYCL-2020.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// RUN: %clangxx -fsycl %s -o %t.out
// RUN: %RUN_ON_HOST %t.out
// RUN: %t.out

#include <sycl/sycl.hpp>

Expand Down
5 changes: 2 additions & 3 deletions sycl/test/basic_tests/host_image_accessor_read.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s -o %t.out
// RUN: %RUN_ON_HOST %t.out
// RUN: %clangxx -fsycl %s -o %t.out
// RUN: %t.out

//==---- host_image_accessor_read.cpp - SYCL host image accessor check ----==//
//
Expand All @@ -22,7 +22,6 @@ int foo(float *image_data) {
sycl::range<3> r(3, 3, 3);
{
sycl::buffer<int, 1> ResultBuf(result, sycl::range<1>(2));
sycl::queue Q;
sycl::image<3> Image(image_data, channelOrder, channelType, r);

sycl::range<2> pitch = Image.get_pitch();
Expand Down
2 changes: 1 addition & 1 deletion sycl/test/basic_tests/known_identity.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// RUN: %clangxx -fsycl -Xclang -verify %s -Xclang -verify-ignore-unexpected=note,warning -o %t.out -std=c++17
// RUN: %RUN_ON_HOST %t.out
// RUN: %t.out
// expected-no-diagnostics

// This test performs basic checks of has_known_identity and known_identity
Expand Down
44 changes: 0 additions & 44 deletions sycl/test/basic_tests/linear-host-dev.cpp

This file was deleted.

2 changes: 1 addition & 1 deletion sycl/test/basic_tests/marray/marray.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// RUN: %clangxx -fsycl %s -o %t.out
// RUN: %RUN_ON_HOST %t.out
// RUN: %t.out

//==--------------- marray.cpp - SYCL marray test --------------------------==//
//
Expand Down
Loading