mila-iqia/myia

Constant Propagation needs to be added (at least for scalars)

ethancaballero opened this issue · 0 comments

This doesn't work in Myia:

x = x.view(3, 4*4*50)

but this does work in Myia:

x = x.view(3, 800)

(via pytorch frontend for both examples)