From 0b1ebb1ba5e073c577b6bd64b44b020bf8c1b6af Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Wed, 17 Sep 2014 19:52:18 +0800 Subject: [PATCH] devices/core: raise loop unrolling limit --- artiq/devices/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/devices/core.py b/artiq/devices/core.py index 0e0b20eff..56a3e1e51 100644 --- a/artiq/devices/core.py +++ b/artiq/devices/core.py @@ -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)