From b62c8591689f0922f416d6a6565df3b6dbce942f Mon Sep 17 00:00:00 2001 From: Travis Oliphant Date: Fri, 16 Sep 2005 04:48:54 +0000 Subject: Added _dotblas install --- scipy/base/numeric.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'scipy/base/numeric.py') 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: -- cgit v1.2.1