Skip to content

Commit 1ffbae7

Browse files
author
Erich Keane
committed
Add sycl regression test from @AlexeySachkov 's repo, hopefully sufficient for his request for this test
1 parent dff7734 commit 1ffbae7

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// RUN: %clangxx -fsycl -fsycl-unnamed-lambda %s -o %t.out
2+
#include <sycl.hpp>
3+
int main() {
4+
auto w = [](auto i) {};
5+
sycl::queue q;
6+
q.parallel_for(10, [](auto i) {});
7+
q.parallel_for(10, w);
8+
}

0 commit comments

Comments
 (0)