コード例 #1
0
 def __del__(self):
   try:
     func_graph_module.dismantle_func_graph(self.func_graph)
   except:  # pylint: disable=bare-except
     # Note: bare except here because this can be noisy at shutdown time.
     pass
コード例 #2
0
ファイル: def_function.py プロジェクト: kylin9872/tensorflow
 def __del__(self):
   try:
     func_graph_module.dismantle_func_graph(self.func_graph)
   except:  # pylint: disable=bare-except
     # Note: bare except here because this can be noisy at shutdown time.
     pass