Skip to content

rename dpctl.dptensor -> dpctl.tensor #407

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 28, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dpctl/dptensor/__init__.py → dpctl/tensor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -27,4 +27,4 @@

"""

import dpctl.dptensor.numpy_usm_shared
import dpctl.tensor.numpy_usm_shared
File renamed without changes.
4 changes: 2 additions & 2 deletions dpctl/tests/test_dparray.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down