Browse Source

Increase max instruction threshold

jonathanvdc 8 years ago
parent
commit
be66d916f3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      kernel/modelverse_jit/jit.py

+ 1 - 1
kernel/modelverse_jit/jit.py

@@ -46,7 +46,7 @@ class ModelverseJit(object):
             'PrimitiveFinished' : primitive_functions.PrimitiveFinished
         }
         self.jit_count = 0
-        self.max_instructions = 30 if max_instructions is None else max_instructions
+        self.max_instructions = 200 if max_instructions is None else max_instructions
         self.compiled_function_lookup = compiled_function_lookup
         # jit_intrinsics is a function name -> intrinsic map.
         self.jit_intrinsics = {}