Skip to content

Commit

Permalink
Merge pull request #407 from IntelPython/rename-dptensor
Browse files Browse the repository at this point in the history
rename dpctl.dptensor -> dpctl.tensor
  • Loading branch information
oleksandr-pavlyk authored Apr 28, 2021
2 parents 7beab79 + e528997 commit 22a85f7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
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

0 comments on commit 22a85f7

Please sign in to comment.