Skip to content

Add the new dparray class under dpctl.dptensor.dparray #200

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

Closed
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
1 change: 0 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
include versioneer.py
include dparray.py
recursive-include dpctl/include *.h *.hpp
include dpctl/*.pxd
include dpctl/*DPPL*Interface.*
Expand Down
2 changes: 2 additions & 0 deletions dpctl/__init__.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,5 @@

from dpctl._sycl_core cimport *
from dpctl._memory import *
from dpctl.dptensor.dparray import *

1 change: 1 addition & 0 deletions dpctl/dptensor/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .dparray import *
File renamed without changes.
1 change: 1 addition & 0 deletions dpctl/tests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,4 @@
from .test_sycl_queue_manager import *
from .test_sycl_queue_memcpy import *
from .test_sycl_usm import *
from .test_dparray import *
2 changes: 1 addition & 1 deletion dpctl/tests/test_dparray.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
##===----------------------------------------------------------------------===##

import unittest
from dpctl import dparray
from dpctl.dptensor import dparray
import numpy


Expand Down