aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Shanqing Cai <cais@google.com>2017-10-17 13:47:23 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-10-17 13:51:40 -0700
commit7f778806153598093af01081650fe36a16a2ff56 (patch)
treea68f30810b4d96b112a76f9f9a6a6163c33ee2e6
parent476ef197b86f1ab42a73ac4ab50080953578a161 (diff)
tfdbg: add missing -f flag of the pt command to the command table
PiperOrigin-RevId: 172508350
-rw-r--r--tensorflow/docs_src/programmers_guide/debugger.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/tensorflow/docs_src/programmers_guide/debugger.md b/tensorflow/docs_src/programmers_guide/debugger.md
index 58154d19e7..36a016e880 100644
--- a/tensorflow/docs_src/programmers_guide/debugger.md
+++ b/tensorflow/docs_src/programmers_guide/debugger.md
@@ -141,6 +141,7 @@ Try the following commands at the `tfdbg>` prompt (referencing the code at
| **`lt`** | | **List dumped tensors.** | `lt` |
| | `-n <name_pattern>` | List dumped tensors with names matching given regular-expression pattern. | `lt -n Softmax.*` |
| | `-t <op_pattern>` | List dumped tensors with op types matching given regular-expression pattern. | `lt -t MatMul` |
+| | `-f <filter_name>` | List only the tensors that pass a registered tensor filter. | `lt -f has_inf_or_nan` |
| | `-s <sort_key>` | Sort the output by given `sort_key`, whose possible values are `timestamp` (default), `dump_size`, `op_type` and `tensor_name`. | `lt -s dump_size` |
| | `-r` | Sort in reverse order. | `lt -r -s dump_size` |
| **`pt`** | | **Print value of a dumped tensor.** | |