File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 17
17
"""
18
18
**Data Parallel Tensor Collection**
19
19
20
- `dpctl.dptensor ` is an experimental collection of tensor implementations
20
+ `dpctl.tensor ` is an experimental collection of tensor implementations
21
21
that will implement future Python data API (https://data-apis.github.io/array-api/latest/).
22
22
23
23
Available tensor implementations:
27
27
28
28
"""
29
29
30
- import dpctl .dptensor .numpy_usm_shared
30
+ import dpctl .tensor .numpy_usm_shared
File renamed without changes.
Original file line number Diff line number Diff line change 14
14
# See the License for the specific language governing permissions and
15
15
# limitations under the License.
16
16
17
- """Unit test cases for dpctl.dptensor .numpy_usm_shared.
17
+ """Unit test cases for dpctl.tensor .numpy_usm_shared.
18
18
"""
19
19
20
20
import unittest
21
- from dpctl .dptensor import numpy_usm_shared as dparray
21
+ from dpctl .tensor import numpy_usm_shared as dparray
22
22
import numpy
23
23
24
24
You can’t perform that action at this time.
0 commit comments