forked from apache/mxnet
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update ndarray.nd, remove
invoke
from excluded members
remove __weakref__ from SparseNDArray
- Loading branch information
1 parent
d0579c4
commit 53ea7ee
Showing
5 changed files
with
81 additions
and
12 deletions.
There are no files selected for viewing
Submodule dlpack
updated
14 files
+1 −1 | .gitignore | |
+46 −0 | .travis.yml | |
+8 −4 | CMakeLists.txt | |
+21 −10 | Makefile | |
+7 −0 | NEWS.md | |
+7 −0 | README.md | |
+7 −7 | contrib/dlpack/dlpackcpp.h | |
+7 −0 | contrib/mock_c.c | |
+1 −0 | contrib/mock_main.cc | |
+11 −5 | include/dlpack/dlpack.h | |
+6 −0 | tests/scripts/task_build.sh | |
+23 −0 | tests/scripts/task_lint.sh | |
+12 −0 | tests/travis/run_test.sh | |
+5 −0 | tests/travis/setup.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,10 @@ | ||
"""ndarray module""" | ||
"""NDArray API of MXNet.""" | ||
|
||
from . import _internal | ||
from . import op | ||
from .op import CachedOp | ||
from .ndarray import NDArray, concatenate, _DTYPE_NP_TO_MX, _DTYPE_MX_TO_NP | ||
from .ndarray import ones, add, arange, divide, equal, full, greater, greater_equal, imdecode | ||
from .ndarray import lesser, lesser_equal, maximum, minimum, moveaxis, multiply, negative, not_equal | ||
from .ndarray import onehot_encode, power, subtract, true_divide, waitall, _new_empty_handle | ||
# pylint: disable=wildcard-import | ||
from .ndarray import * | ||
from .ndarray_utils import load, save, zeros, empty, array | ||
from .sparse_ndarray import _ndarray_cls, todense | ||
from .sparse_ndarray import csr, row_sparse, BaseSparseNDArray, RowSparseNDArray, CSRNDArray | ||
from .sparse_ndarray import _ndarray_cls | ||
from .sparse_ndarray import csr, row_sparse, BaseSparseNDArray, todense, RowSparseNDArray, CSRNDArray |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters