Skip to content

Commit dd74214

Browse files
committed
address review feedback
remove remaining tensor references
1 parent 408a03f commit dd74214

File tree

5 files changed

+4
-55
lines changed

5 files changed

+4
-55
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,11 @@ classes](https://www.khronos.org/registry/SYCL/specs/sycl-2020/html/sycl-2020.ht
2929

3030
`dpctl` features classes for [SYCL Unified Shared Memory
3131
(USM)](https://link.springer.com/chapter/10.1007/978-1-4842-5574-2_6)
32-
management and implements a tensor library conforming to [Python Array
33-
API](https://data-apis.org/array-api/latest/) standard.
32+
management.
3433

3534
The library helps authors of Python native extensions written
3635
in C, Cython, or pybind11 to access `dpctl` objects representing SYCL
37-
devices, queues, memory, and tensors.
36+
devices, queues, and memory.
3837

3938
`Dpctl` is the core part of a larger family of [data-parallel Python
4039
libraries and tools](https://www.intel.com/content/www/us/en/developer/tools/oneapi/distribution-for-python.html)

docs/doc_sources/_templates/autosummary/usm_ndarray.rst

Lines changed: 0 additions & 45 deletions
This file was deleted.

docs/doc_sources/known_words.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,6 @@ SyclEvent
6161
SyclKernel
6262
SyclProgram
6363
SyclPlatform
64-
dlpack
65-
DLPack
6664
dtype
6765
ndarray
6866
usm

docs/doc_sources/user_guides/index.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,4 @@ User guides
3131
:hidden:
3232

3333
basic_concepts
34-
execution_model
35-
dlpack
3634
environment_variables

scripts/gen_coverage.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -222,11 +222,10 @@ def find_objects():
222222
sfx_regexp = sysconfig.get_config_var("EXT_SUFFIX").replace(
223223
".", r"\."
224224
)
225-
regexp1 = re.compile(r"^_tensor_.*impl" + sfx_regexp)
226-
regexp2 = re.compile(r"^^_device_queries" + sfx_regexp)
225+
regexp = re.compile(r"^^_device_queries" + sfx_regexp)
227226

228227
def is_py_ext(fn):
229-
return re.match(regexp1, fn) or re.match(regexp2, fn)
228+
return re.match(regexp, fn)
230229

231230
for root, _, files in os.walk("dpctl"):
232231
for file in files:

0 commit comments

Comments
 (0)