Skip to content

Commit 413dd39

Browse files
committed
Remove mentions of host platform
1 parent 34b4aa6 commit 413dd39

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

sycl/doc/extensions/experimental/sycl_ext_oneapi_get_unsupported_platforms.asciidoc

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,8 @@ specification.*
5555

5656
The implementation of `sycl::platform` already allows querying for supported
5757
platforms - `static std::vector<platform> get_platforms()` - which returns all
58-
available SYCL platforms in the system (the resulting vector always contains a
59-
single SYCL host platform instance). This extension adds an API entry to list
60-
all unsupported platforms; the platform is considered unsupported if it is
58+
available SYCL platforms in the system. This extension adds an API entry to
59+
list all unsupported platforms; the platform is considered unsupported if it is
6160
non-SYCL, or does not have any devices associated.
6261

6362
This extension exists to solve a specific problem: listing of all platforms

sycl/source/detail/platform_impl.hpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,8 @@ class platform_impl {
117117

118118
/// Returns all available SYCL platforms in the system.
119119
///
120-
/// By default the resulting vector always contains a single SYCL host
121-
/// platform instance. There are means to override this behavior for testing
122-
/// purposes. See environment variables guide for up-to-date instructions.
120+
/// There are means to override this behavior for testing purposes. See
121+
/// environment variables guide for up-to-date instructions.
123122
///
124123
/// \return a vector of all available SYCL platforms.
125124
static std::vector<platform> get_platforms();

0 commit comments

Comments
 (0)