New submission from lesshaste <[email protected]>:

np.random.seed(22)
f = np.random.random_sample((1024, 16))
v = np.random.random_sample((16, 32))

r = np.empty((1024, 32))
for i in range(12):
    np.dot(f, v, r)
r2 = np.dot(f, v, out=None)


r and r2 should now be equal but they are not.

----------
messages: 6690
nosy: lesshaste, pypy-issue
priority: bug
status: unread
title: numpy: bug. Wrong output in dot test

________________________________________
PyPy bug tracker <[email protected]>
<https://bugs.pypy.org/issue1730>
________________________________________
_______________________________________________
pypy-issue mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-issue

Reply via email to