aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/protobuf
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-09-19 18:55:43 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-09-19 19:02:27 -0700
commit5ce3523bcc844217b47e7f862c1bed894cbaa34e (patch)
treedf131f41215ac39e448e5931da5d6a72605a8b16 /tensorflow/core/protobuf
parent7ad8e25495a2793ea14189359af736d2c662a694 (diff)
Extending the core DebugIdentity tensorflow operation with support for writing
to a singleton in memory datastructure that records a mapping from debug_urls to debug events. This simplifies reading a large number of states without writing to disk or making internal RPC calls for arbitrary nodes. PiperOrigin-RevId: 169337269
Diffstat (limited to 'tensorflow/core/protobuf')
-rw-r--r--tensorflow/core/protobuf/debug.proto11
1 files changed, 10 insertions, 1 deletions
diff --git a/tensorflow/core/protobuf/debug.proto b/tensorflow/core/protobuf/debug.proto
index e1e51b6f18..136c627e25 100644
--- a/tensorflow/core/protobuf/debug.proto
+++ b/tensorflow/core/protobuf/debug.proto
@@ -24,7 +24,16 @@ message DebugTensorWatch {
repeated string debug_ops = 3;
// URL(s) for debug targets(s).
- // E.g., "file:///foo/tfdbg_dump", "grpc://localhost:11011"
+ //
+ // Supported URL formats are:
+ // - file:///foo/tfdbg_dump: Writes out Event content to file
+ // /foo/tfdbg_dump. Assumes all directories can be created if they don't
+ // already exist.
+ // - grpc://localhost:11011: Sends an RPC request to an EventListener
+ // service running at localhost:11011 with the event.
+ // - memcbk:///event_key: Routes tensors to clients using the
+ // callback registered with the DebugCallbackRegistry for event_key.
+ //
// Each debug op listed in debug_ops will publish its output tensor (debug
// signal) to all URLs in debug_urls.
//