diff --git a/dpctl/dptensor/__init__.py b/dpctl/tensor/__init__.py similarity index 89% rename from dpctl/dptensor/__init__.py rename to dpctl/tensor/__init__.py index 2644c93946..4f74282ce9 100644 --- a/dpctl/dptensor/__init__.py +++ b/dpctl/tensor/__init__.py @@ -17,7 +17,7 @@ """ **Data Parallel Tensor Collection** - `dpctl.dptensor` is an experimental collection of tensor implementations + `dpctl.tensor` is an experimental collection of tensor implementations that will implement future Python data API (https://data-apis.github.io/array-api/latest/). Available tensor implementations: @@ -27,4 +27,4 @@ """ -import dpctl.dptensor.numpy_usm_shared +import dpctl.tensor.numpy_usm_shared diff --git a/dpctl/dptensor/numpy_usm_shared.py b/dpctl/tensor/numpy_usm_shared.py similarity index 100% rename from dpctl/dptensor/numpy_usm_shared.py rename to dpctl/tensor/numpy_usm_shared.py diff --git a/dpctl/tests/test_dparray.py b/dpctl/tests/test_dparray.py index 76e5c8a0d9..ad98b98633 100644 --- a/dpctl/tests/test_dparray.py +++ b/dpctl/tests/test_dparray.py @@ -14,11 +14,11 @@ # See the License for the specific language governing permissions and # limitations under the License. -"""Unit test cases for dpctl.dptensor.numpy_usm_shared. +"""Unit test cases for dpctl.tensor.numpy_usm_shared. """ import unittest -from dpctl.dptensor import numpy_usm_shared as dparray +from dpctl.tensor import numpy_usm_shared as dparray import numpy