瀏覽代碼

Turn off a debug statement in the JIT

jonathanvdc 8 年之前
父節點
當前提交
fd3ca83618
共有 1 個文件被更改,包括 1 次插入1 次删除
  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):