removed logging of default mode. This functionality can be added later when we

have a full config file
上级 710c0169
...@@ -792,7 +792,6 @@ def function(inputs, outputs, mode=None, accept_inplace = False): ...@@ -792,7 +792,6 @@ def function(inputs, outputs, mode=None, accept_inplace = False):
""" """
mode = mode if mode is not None else mode_module.default_mode mode = mode if mode is not None else mode_module.default_mode
print >> sys.stderr, "INFO: compiling function with mode", mode
inputs = map(convert_function_input, inputs) inputs = map(convert_function_input, inputs)
if outputs is None: if outputs is None:
......
...@@ -149,7 +149,6 @@ class Component(object): ...@@ -149,7 +149,6 @@ class Component(object):
memo = {} memo = {}
self.allocate(memo) self.allocate(memo)
rval = self.build(mode, memo) rval = self.build(mode, memo)
print >> sys.stderr, "INFO: compiling component with mode", mode
return rval return rval
def make(self, *args, **kwargs): def make(self, *args, **kwargs):
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论