From: Fernando P. <Fer...@co...> - 2004-06-17 23:49:07
|
Robert Kern wrote: > Check the last few lines of Numeric.py . Argh. Could've saved myself the embarrasment :) In my meager defense, the README.html file for doblas then needs to be updated, since that's what I followed: # quote Finally, if you don't know whether dotblas will be available on all the machines where you whish to run your code, you can simply use a try-except statement like this: import Numeric try: import dotblas Numeric.dot = dotblas.dot if we can't find the fast dotblas, just use the normal dot except ImportError: pass # /quote Thanks, though. I'll clean up my codes f |