diff options
author | Daniel Smith <malorian@me.com> | 2016-09-09 14:47:21 -0400 |
---|---|---|
committer | Daniel Smith <malorian@me.com> | 2016-09-26 12:21:42 -0400 |
commit | 4c788f4e7f6f5af6b1c3cda98388768912349b46 (patch) | |
tree | f000cfc7c48cee1a93f9cbefec6bdb363dde7db0 /numpy/core/numeric.py | |
parent | 0887da9386e812d2769744afd6c58a927d6cbb45 (diff) | |
download | numpy-4c788f4e7f6f5af6b1c3cda98388768912349b46.tar.gz |
ENH: Allows contraction order optimization in einsum function.
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r-- | numpy/core/numeric.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py index 81d9d3697..82f7b081f 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -12,7 +12,7 @@ from .multiarray import ( _fastCopyAndTranspose as fastCopyAndTranspose, ALLOW_THREADS, BUFSIZE, CLIP, MAXDIMS, MAY_SHARE_BOUNDS, MAY_SHARE_EXACT, RAISE, WRAP, arange, array, broadcast, can_cast, compare_chararrays, - concatenate, copyto, count_nonzero, dot, dtype, einsum, empty, + concatenate, copyto, count_nonzero, dot, dtype, empty, empty_like, flatiter, frombuffer, fromfile, fromiter, fromstring, inner, int_asbuffer, lexsort, matmul, may_share_memory, min_scalar_type, ndarray, nditer, nested_iters, promote_types, @@ -53,7 +53,7 @@ __all__ = [ 'min_scalar_type', 'result_type', 'asarray', 'asanyarray', 'ascontiguousarray', 'asfortranarray', 'isfortran', 'empty_like', 'zeros_like', 'ones_like', 'correlate', 'convolve', 'inner', 'dot', - 'einsum', 'outer', 'vdot', 'alterdot', 'restoredot', 'roll', + 'outer', 'vdot', 'alterdot', 'restoredot', 'roll', 'rollaxis', 'moveaxis', 'cross', 'tensordot', 'array2string', 'get_printoptions', 'set_printoptions', 'array_repr', 'array_str', 'set_string_function', 'little_endian', 'require', 'fromiter', |