Skip to content

Commit 4c00a2a

Browse files
author
Mohammad Fawaz
committed
Removing the spec from this PR
Will create a separate PR for the spec alone.
1 parent 40f927c commit 4c00a2a

File tree

2 files changed

+5
-119
lines changed

2 files changed

+5
-119
lines changed

sycl/doc/extensions/IntelFPGA/FPGALsu.md

Lines changed: 0 additions & 116 deletions
This file was deleted.

sycl/test/fpga_tests/fpga_lsu.cpp

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// RUN: %clangxx -fsycl %s -o %t.out
22
// RUNx: %ACC_RUN_PLACEHOLDER %t.out
3-
//==--------------- fpga_lsu.cpp - SYCL FPGA pipes test --------------------==//
3+
//==----------------- fpga_lsu.cpp - SYCL FPGA LSU test --------------------==//
44
//
55
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
66
// See https://llvm.org/LICENSE.txt for license information.
@@ -29,8 +29,10 @@ int test_lsu(cl::sycl::queue Queue) {
2929
cl::sycl::buffer<int, 1> input_buffer(input_data, 1);
3030

3131
Queue.submit([&](cl::sycl::handler &cgh) {
32-
auto output_accessor = output_buffer.get_access<cl::sycl::access::mode::write>(cgh);
33-
auto input_accessor = input_buffer.get_access<cl::sycl::access::mode::read>(cgh);
32+
auto output_accessor =
33+
output_buffer.get_access<cl::sycl::access::mode::write>(cgh);
34+
auto input_accessor =
35+
input_buffer.get_access<cl::sycl::access::mode::read>(cgh);
3436

3537
cgh.single_task<class kernel>([=] {
3638
auto input_ptr = input_accessor.get_pointer();

0 commit comments

Comments
 (0)