Skip to content

Commit f2ab989

Browse files
committed
[SYCL][NFC] Fix typos in SYCL documentation
Signed-off-by: Alexey Bader <[email protected]>
1 parent b5288b0 commit f2ab989

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

sycl/doc/SYCLCompilerAndRuntimeDesign.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,8 @@ mode in SYCL:
169169
* IsSYCLOffloadDevice: True if calling clang to set up a device compilation
170170
* IsSYCLHost: True if setting up a call to clang to do a host compilation
171171

172-
The option `-sycl-std` allows specifiying which version of
173-
the SYCL standard will be used for the compilation.
172+
The option `-sycl-std` allows specifying which version of
173+
the SYCL standard will be used for the compilation.
174174
The default value for this option is `1.2.1`.
175175

176176
#### Ahead of time (AOT) compilation
@@ -371,7 +371,7 @@ host_a.cpp and host_b.cpp where only dev_a.cpp and dev_b.cpp contain device code
371371
they can divide the compilation process into three steps:
372372
1. Device link: dev_a.cpp dev_b.cpp -> dev_image.o (contain device image)
373373
2. Host Compile (c): host_a.cpp -> host_a.o; host_b.cpp -> host_b.o
374-
3. Linking: dev_image.o host_a.o host_b.o -> exectuable
374+
3. Linking: dev_image.o host_a.o host_b.o -> executable
375375
376376
Step 1 can take hours for some targets. But if the user wish to recompile after
377377
modifying only host_a.cpp and host_b.cpp, they can simply run steps 2 and 3 without

sycl/doc/SYCLEnvironmentVariables.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This file describes environment variables that are having effect on SYCL compile
77
| Environment variable | Description |
88
| ----------- | ----------- |
99
| SYCL_PI_TRACE | If set forces tracing of PI calls to stdout. |
10-
| SYCL_BE={PI_OPENCL,PI_OTHER} | When SYCL RT is buils with PI this controls which plugin to use. |
10+
| SYCL_BE={PI_OPENCL,PI_OTHER} | When SYCL RT is built with PI this controls which plugin to use. |
1111
| SYCL_PRINT_EXECUTION_GRAPH | Print execution graph to DOT text file. Options are described below. |
1212

1313
SYCL_PRINT_EXECUTION_GRAPH can accept one or more comma separated values from table below

0 commit comments

Comments
 (0)