Skip to content

Commit e528997

Browse files
rename dpctl.dptensor -> dpctl.tensor
1 parent 7beab79 commit e528997

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

dpctl/dptensor/__init__.py renamed to dpctl/tensor/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"""
1818
**Data Parallel Tensor Collection**
1919
20-
`dpctl.dptensor` is an experimental collection of tensor implementations
20+
`dpctl.tensor` is an experimental collection of tensor implementations
2121
that will implement future Python data API (https://data-apis.github.io/array-api/latest/).
2222
2323
Available tensor implementations:
@@ -27,4 +27,4 @@
2727
2828
"""
2929

30-
import dpctl.dptensor.numpy_usm_shared
30+
import dpctl.tensor.numpy_usm_shared
File renamed without changes.

dpctl/tests/test_dparray.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616

17-
"""Unit test cases for dpctl.dptensor.numpy_usm_shared.
17+
"""Unit test cases for dpctl.tensor.numpy_usm_shared.
1818
"""
1919

2020
import unittest
21-
from dpctl.dptensor import numpy_usm_shared as dparray
21+
from dpctl.tensor import numpy_usm_shared as dparray
2222
import numpy
2323

2424

0 commit comments

Comments
 (0)