summaryrefslogtreecommitdiff
path: root/scipy/base/numeric.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2005-09-16 04:48:54 +0000
committerTravis Oliphant <oliphant@enthought.com>2005-09-16 04:48:54 +0000
commitb62c8591689f0922f416d6a6565df3b6dbce942f (patch)
tree6ba8c4a48550d372e3b5c4aebd7c24bbe41a58d0 /scipy/base/numeric.py
parentd91b5b9e71527f94be2119299b2ed9c3e417dc4c (diff)
downloadnumpy-b62c8591689f0922f416d6a6565df3b6dbce942f.tar.gz
Added _dotblas install
Diffstat (limited to 'scipy/base/numeric.py')
-rw-r--r--scipy/base/numeric.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/scipy/base/numeric.py b/scipy/base/numeric.py
index 05e9f1355..9a5f0cd14 100644
--- a/scipy/base/numeric.py
+++ b/scipy/base/numeric.py
@@ -82,9 +82,12 @@ def vdot(a, b):
try:
# importing this changes the dot function for basic 4 types
# to blas-optimized versions.
- from blasdot import dot, vdot, inner
+ from scipy.lib._dotblas import dot, vdot, inner, alterdot, restoredot
except ImportError:
- pass
+ def alterdot():
+ pass
+ def restoredot():
+ pass
def _move_axis_to_0(a, axis):
if axis == 0: