Skip to content

Commit 4924601

Browse files
Edits to documentation per review feedback
Made intended use of event to ensure completion of submitted operation from host side of the application explicit. Removed note that lsplatform is new in dpctl 0.7 Update docs/docfiles/user_guides/QuickStart.rst Streamlined notice about GPU drivers per PR review feedback. Co-authored-by: Alexandra <[email protected]>
1 parent d6b7c66 commit 4924601

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

docs/docfiles/user_guides/QuickStart.rst

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,9 @@ On Windows
3636
3737
.. note::
3838

39-
The ``dpctl.lsplatform()`` function is new in dpctl 0.7 and will be
40-
available in oneAPI 2021.3. If you are following the guide on an older
41-
oneAPI installation, use ``dpctl.dump()``. If no GPU platforms are shown,
42-
make sure your system has a supported GPU and has the necessary GPU drivers
43-
installed. You can install GPU drivers by following the
44-
`GPU driver installation guide`_.
39+
If no GPU platforms are shown, make sure your system has a supported
40+
GPU and the necessary GPU drivers installed.
41+
See `GPU driver installation guide`_ to install GPU drivers.
4542

4643
Install Wheel package from Pypi
4744
===============================

docs/docfiles/user_guides/manual/dpctl/basic_concepts.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ more topical SYCL reference such as the :sycl_spec_2020:`SYCL 2020 spec <>`.
4949
scheduled for execution on a queue, such as its execution status as well
5050
as profiling information if the queue the task was submitted to allowed
5151
for collection of such information. Events can be used to specify task
52-
dependencies as well as to synchronize host and devices.
52+
dependencies as well as to ensure completion of the associated command from
53+
the host.
5354

5455
* **USM**
5556
Unified Shared Memory (USM) refers to pointer based device memory management.
@@ -64,7 +65,7 @@ more topical SYCL reference such as the :sycl_spec_2020:`SYCL 2020 spec <>`.
6465
allocation, a "shared" allocation, or a "host" allocation. A "device"
6566
allocation is not accessible from host, while "shared" or "host" allocations
6667
are. "Host" allocation refers to an allocation in host memory that is
67-
accessible from a device.
68+
also accessible from a device.
6869

6970
"Shared" allocations are accessible by both host and device. Runtime manages
7071
synchronization of host's and device's view into shared allocations. Initial

0 commit comments

Comments
 (0)