Skip to content
Snippets Groups Projects

Fix the default shape of loopy.TemporaryVariable

Merged Kaushik Kulkarni requested to merge fix-temp-default-shape into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -581,7 +581,7 @@ class TemporaryVariable(ArrayBase):
shape = initializer.shape
else:
if shape != initializer.shape:
raise LoopyError("Shape of '{}' does match that of the"
raise LoopyError("Shape of '{}' does not match that of the"
" initializer.".format(name))
else:
raise LoopyError(
Loading