aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/protobuf/debug.proto
Commit message (Collapse)AuthorAge
* tfdbg: Add adjustable limit to total bytes dumped to diskGravatar Shanqing Cai2018-08-28
| | | | | RELNOTES: tfdbg: Limit the total disk space occupied by dumped tensor data to 100 GBytes. Add environment variable `TFDBG_DISK_BYTES_LIMIT` to allow adjustment of this upper limit. PiperOrigin-RevId: 210648585
* tfdbg: remove Experimental tags and obsolete libraryGravatar Shanqing Cai2018-07-13
| | | | | | * debug_gateway and the related node_outputs_callback are not used and hence are removed in this CL. PiperOrigin-RevId: 204519574
* Add go_package to proto definition files (#17262)Gravatar Yong Tang2018-05-02
| | | | | | | | | | | | | | | | | | | | | | | | * Add go_package to proto definition files This fix tries to address the issue raised in 16282 by add go_package to proto files, so that generated go files have correct path. This fix fixes 16282. Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Add go_package to proto definition in tensorflow/core/framework Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Add go_package to proto definition in tensorflow/core/example Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Add go_package to proto definition in tensorflow/core/example Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
* tfdbg: Add protocol for sending tracebacks and source code to debug serverGravatar Shanqing Cai2017-12-06
| | | | PiperOrigin-RevId: 178192708
* Extending the core DebugIdentity tensorflow operation with support for writingGravatar A. Unique TensorFlower2017-09-19
| | | | | | | | 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
* tfdbg: add option to tolerate debug op creation failuresGravatar Shanqing Cai2017-02-28
| | | | Change: 148788753
* tfdbg core: add core metadata to debugger data stream + better support of ↵Gravatar Shanqing Cai2017-02-08
| | | | | | | | | | | | | | | | | concurrent debugged runs * Let the debugger send/dump an Event proto holding a JSON string in its log_message.message field. The JSON metadata includes, 1) An optional, client-specified global_step field that defaults to -1 if not supplied 2) A session run count 3) An executor invocation step count 4) Input names (feed keys) 5) Output names (fetched Tensor names) 6) Target node names * grpc_debug_server.EventListenerBaseServicer now requires a constructor of the type EventListenerBaseStreamHandler and will construct a new handler object from it, for every stream. This leads to better support of concurrent debugged Session::Run() calls. * Add support for path names in grpc:// URLs, such as "grpc://localhost:6000/thread1". Different path names will lead to separate gRPC streams being opened to the same server:port, supporting concurrent debugged Session::Run() calls. Change: 146896481
* Add a :debug BUILD target which, when linked into a binary, enablesGravatar A. Unique TensorFlower2016-12-07
DirectSession support for TensorFlow Debugger (tfdbg). Binaries that do not want debugging support can avoid this dependency and its transitive deps. This replaces the previous approach that was based on a preprocessor flag (-DNOTFDBG). Change: 141321165