提交 ccd4e1f9 authored 作者: Frederic Bastien's avatar Frederic Bastien

fix test with numpy 1.2.1

上级 b93835f7
...@@ -9,7 +9,7 @@ import numpy ...@@ -9,7 +9,7 @@ import numpy
import theano import theano
from numpy import (arange, array, common_type, complex64, complex128, float32, from numpy import (arange, array, common_type, complex64, complex128, float32,
float64, newaxis, shape, transpose, zeros) float64, newaxis, shape, transpose, zeros)
from numpy.testing import assert_, assert_array_almost_equal from numpy.testing import assert_array_almost_equal
#from numpy.testing import dec #from numpy.testing import dec
#from numpy.testing.noseclasses import KnownFailureTest #from numpy.testing.noseclasses import KnownFailureTest
...@@ -1003,7 +1003,7 @@ def matrixmultiply(a, b): ...@@ -1003,7 +1003,7 @@ def matrixmultiply(a, b):
b = b[:,newaxis] b = b[:,newaxis]
else: else:
b_is_vector = False b_is_vector = False
assert_(a.shape[1] == b.shape[0]) assert a.shape[1] == b.shape[0]
c = zeros((a.shape[0], b.shape[1]), common_type(a, b)) c = zeros((a.shape[0], b.shape[1]), common_type(a, b))
for i in xrange(a.shape[0]): for i in xrange(a.shape[0]):
for j in xrange(b.shape[1]): for j in xrange(b.shape[1]):
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论