Skip to content

Commit 2f61342

Browse files
author
Andrew Savonichev
committed
Code review comments
Signed-off-by: Andrew Savonichev <[email protected]>
1 parent 42d52b8 commit 2f61342

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

sycl/doc/SYCLEnvironmentVariables.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ subject to change. Do not rely on these variables in production code.
1818
| SYCL_DUMP_IMAGES | Any(*) | Dump device image binaries to file. Control has no effect if SYCL_USE_KERNEL_SPV is set. |
1919
| SYCL_PRINT_EXECUTION_GRAPH | Described [below](#sycl_print_execution_graph-options) | Print execution graph to DOT text file. |
2020
| SYCL_THROW_ON_BLOCK | Any(*) | Throw an exception on attempt to wait for a blocked command. |
21-
| SYCL_DEVICELIB_INHIBIT_NATIVE | String of device library extensions (separated by a whitespace) | Do not rely on device native support for devicelib extensions listed in this option. |
21+
| SYCL_DEVICELIB_INHIBIT_NATIVE | String of device library extensions (separated by a whitespace) | Do not rely on device native support for devicelib extensions listed in this option. |
2222

2323
`(*) Note: Any means this environment variable is effective when set to any non-null value.`
2424

sycl/doc/extensions/C-CXX-StandardLibrary/C-CXX-StandardLibrary.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This extension enables a set of functions from the C and C++ standard
55
libraries, and allows to use them in SYCL device code.
66

77
Function declarations are taken from the standard headers (e.g. from
8-
<assert.h> or <complex>), and the corresponding header has to be
8+
<assert.h> or <cassert>), and the corresponding header has to be
99
explicitly included in user code.
1010

1111
Implementation requires a special device library to be linked with a
@@ -23,7 +23,7 @@ or, in case of Windows:
2323
clang++ -fsycl main.obj %SYCL_INSTALL%/lib/libsycl-msvc.o -o a.exe
2424
2525
List of supported functions from C standard library:
26-
- assert macro (from assert.h)
26+
- assert macro (from <assert.h> or <cassert>)
2727

2828
NOTE: only the GNU glibc and Microsoft C libraries are currently
2929
supported.

0 commit comments

Comments
 (0)