Dear all, the following code hangs on my Ubuntu machine. I use self compiled numpy 1.7.1 and Python 2.7.3
-----
import numpy
import numpy.linalg
import multiprocessing
def classify():
X = numpy.random.random((10,3))
print "before svd"
numpy.linalg.svd(X)
print "this message is not printed"
if __name__ == "__main__":
p = multiprocessing.Process(target=classify, args=())
p.start()
p.join()
-----
Regards, Uwe.
--
Dr. rer. nat. Uwe Schmitt
Leitung F/E Mathematik
mineway GmbH
Gebäude 4
Im Helmerswald 2
66121 Saarbrücken
Telefon: +49 (0)681 8390 5334
Telefax: +49 (0)681 830 4376
[email protected]
www.mineway.de
Geschäftsführung: Dr.-Ing. Mathias Bauer
Amtsgericht Saarbrücken HRB 12339
signature.asc
Description: OpenPGP digital signature
_______________________________________________ NumPy-Discussion mailing list [email protected] http://mail.scipy.org/mailman/listinfo/numpy-discussion
