devices/core: raise loop unrolling limit

This commit is contained in:
Sebastien Bourdeauducq 2014-09-17 19:52:18 +08:00
parent 9af0e9c91a
commit 0b1ebb1ba5
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ class Core:
fold_constants(func_def)
_debug_unparse("fold_constants_1", func_def)
unroll_loops(func_def, 50)
unroll_loops(func_def, 500)
_debug_unparse("unroll_loops", func_def)
interleave(func_def)