Skip to content

Commit b2d4d67

Browse files
authored
[ESIMD] Fix more occurrences of 'experimental' namespace in the docs. (#6071)
1 parent bfc1ac5 commit b2d4d67

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

sycl/doc/extensions/experimental/sycl_ext_intel_esimd/sycl_ext_intel_esimd.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Explicit SIMD APIs can be used only in code to be executed on Intel graphics
2828
architecture devices and the host device for now. Attempt to run such code on
2929
other devices will result in error.
3030

31-
All the ESIMD APIs are defined in the `sycl::ext::intel::experimental::esimd`
31+
All the ESIMD APIs are defined in the `sycl::ext::intel::esimd`
3232
namespace.
3333

3434
Kernels and `SYCL_EXTERNAL` functions using ESP must be explicitly marked with
@@ -104,7 +104,7 @@ device-side API
104104
- 2D and 3D accessors
105105
- Constant accessors
106106
- `sycl::accessor::get_pointer()`. All memory accesses through an accessor are
107-
done via explicit APIs; e.g. `sycl::ext::intel::experimental::esimd::block_store(acc, offset)`
107+
done via explicit APIs; e.g. `sycl::ext::intel::esimd::block_store(acc, offset)`
108108
- Accessors with offsets and/or access range specified
109109
- `sycl::sampler` and `sycl::stream` classes
110110

@@ -122,7 +122,7 @@ The element type must either be a vectorizable type. or the `sycl::half` type.
122122
The set of vectorizable types is the
123123
set of fundamental SYCL arithmetic types excluding `bool`. The length of the
124124
vector is the second template parameter.
125-
See the complete [API reference](https://intel.github.io/llvm-docs/doxygen/classcl_1_1sycl_1_1ext_1_1intel_1_1experimental_1_1esimd_1_1simd.html) for the `simd` class for more details.
125+
See the complete [API reference](https://intel.github.io/llvm-docs/doxygen/classcl_1_1____ESIMD__NS_1_1simd.html#details) for the `simd` class for more details.
126126

127127
ESIMD compiler back-end does the best it can to map each `simd` class object to a
128128
contiguous block of registers in the general register file (GRF).
@@ -418,7 +418,7 @@ See more details in the API documentation
418418
419419
#### Extended math
420420
ESIMD supports what is known as "extended math" set of math operations,
421-
providing correponding API in the `sycl::ext::intel::experimental::esimd`
421+
providing correponding API in the `sycl::ext::intel::esimd`
422422
namespace. Those operations are mapped to efficient hardware instructions and
423423
thus have accuracy provided by hardware, which often does not match one required
424424
by the SYCL specification. The table below shows the supported extended math

0 commit comments

Comments
 (0)