Browse Source

Turn off a debug statement in the JIT

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

+ 1 - 1
kernel/modelverse_jit/jit.py

@@ -318,7 +318,7 @@ class ModelverseJit(object):
         # Extract the compiled function from the JIT global state.
         compiled_function = self.jit_globals[function_name]
 
-        print(constructed_function)
+        # print(constructed_function)
         raise primitive_functions.PrimitiveFinished(compiled_function)
 
 class AnalysisState(object):