提交 9c9c6604 authored 作者: Razvan Pascanu's avatar Razvan Pascanu

test for bug reported by Josh

上级 de635cb9
...@@ -1845,6 +1845,12 @@ class T_Scan(unittest.TestCase): ...@@ -1845,6 +1845,12 @@ class T_Scan(unittest.TestCase):
allow_input_downcast = True) allow_input_downcast = True)
print f([1,2,3]) print f([1,2,3])
def test_bug_josh_reported(self):
import theano
import theano.tensor.signal.conv
m1 = theano.tensor.matrix()
m2 = theano.tensor.matrix()
conv = theano.tensor.signal.conv.conv2d(m1, m2)
if __name__ == '__main__': if __name__ == '__main__':
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论