def watch_fn(fetches, feeds):
   del fetches, feeds
   return framework.WatchOptions(
       debug_ops=["DebugIdentity"],
       node_name_regex_whitelist=r"u_init")
Example #2
0
 def watch_fn(fetches, feeds):
     del fetches, feeds
     return framework.WatchOptions(debug_ops=["DebugIdentity"])
Example #3
0
 def _gated_grpc_watch_fn(fetches, feeds):
     del fetches, feeds  # Unused.
     return framework.WatchOptions(
         debug_ops=["DebugIdentity(gated_grpc=true)"])
 def watch_fn(feeds, fetch_keys):
     del feeds, fetch_keys
     return framework.WatchOptions(debug_ops=["DebugIdentity"],
                                   node_name_regex_allowlist=r"p")