Skip to content

Commit ad845cc

Browse files
update readme
1 parent ab4056b commit ad845cc

File tree

2 files changed

+7
-7
lines changed
  • DirectProgramming/C++SYCL_FPGA/Tutorials/Features/experimental/invocation_interfaces

2 files changed

+7
-7
lines changed

DirectProgramming/C++SYCL_FPGA/Tutorials/Features/experimental/invocation_interfaces/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22

3-
# `Register Map and Streaming Interfaces` sample
3+
# `Invocation Interfaces` sample
44
This FPGA tutorial demonstrates how to specify the kernel invocation interfaces and kernel argument interfaces, and demonstrates the differences between streaming interfaces that use a ready/valid handshake, and register-mapped interfaces that exist in the kernel's control/status register (CSR).
55

66
| Optimized for | Description
@@ -193,7 +193,7 @@ void TestLambdaStreamingKernel(sycl::queue &q, ValueT *in, ValueT *out, size_t c
193193
## Key Concepts
194194
* Basics of declaring kernel invocation interfaces and kernel argument interfaces
195195

196-
## Building the `register_map_and_streaming_interfaces` Tutorial
196+
## Building the `invocation_interfaces` Tutorial
197197

198198
> **Note**: When working with the command-line interface (CLI), you should configure the oneAPI toolkits using environment variables.
199199
> Set up your CLI environment by sourcing the `setvars` script located in the root of your oneAPI installation every time you open a new terminal window.

DirectProgramming/C++SYCL_FPGA/Tutorials/Features/experimental/invocation_interfaces/sample.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"guid": "69415BED-D452-449A-8F5A-DB01ACCE38DC",
3-
"name": "register map and streaming interfaces",
3+
"name": "invocation interfaces",
44
"categories": ["Toolkit/oneAPI Direct Programming/C++SYCL FPGA/Tutorials/Features/experimental"],
5-
"description": "An Intel® FPGA tutorial demonstrating the usage of register_map and streaming interface controls",
5+
"description": "An Intel® FPGA tutorial demonstrating the usage of register_map and streaming invocation interfaces",
66
"toolchain": ["icpx"],
77
"os": ["linux", "windows"],
88
"targetDevice": ["FPGA"],
@@ -12,7 +12,7 @@
1212
"base": "../../../..",
1313
"include": [
1414
"README.md",
15-
"Tutorials/Features/experimental/register_map_and_streaming_interfaces",
15+
"Tutorials/Features/experimental/invocation_interfaces",
1616
"include"
1717
],
1818
"exclude": []
@@ -52,7 +52,7 @@
5252
"cd ../../../..",
5353
"mkdir build",
5454
"cd build",
55-
"cmake -G \"NMake Makefiles\" ../Tutorials/Features/experimental/register_map_and_streaming_interfaces",
55+
"cmake -G \"NMake Makefiles\" ../Tutorials/Features/experimental/invocation_interfaces",
5656
"nmake fpga_emu",
5757
"register_map_functor_model.fpga_emu.exe",
5858
"streaming_functor_model.fpga_emu.exe",
@@ -67,7 +67,7 @@
6767
"cd ../../../..",
6868
"mkdir build",
6969
"cd build",
70-
"cmake -G \"NMake Makefiles\" ../Tutorials/Features/experimental/register_map_and_streaming_interfaces",
70+
"cmake -G \"NMake Makefiles\" ../Tutorials/Features/experimental/invocatoin_interfaces",
7171
"nmake report"
7272
]
7373
}

0 commit comments

Comments
 (0)