aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/docs_src/performance
diff options
context:
space:
mode:
authorGravatar Peter Hawkins <phawkins@google.com>2018-05-18 11:43:25 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-05-18 11:46:04 -0700
commit161ba8ecc433c4ddbdbf88eb3a7a0d38bb253d0b (patch)
treee04caad9f8d32fb27e53f5908befeb56f114c82c /tensorflow/docs_src/performance
parent762d815a7a00e79af664a99c8cb397bbd9e238de (diff)
[TF:XLA] Remove underscore prefix from XlaLaunch operator.
Minor fixes to comments. PiperOrigin-RevId: 197177582
Diffstat (limited to 'tensorflow/docs_src/performance')
-rw-r--r--tensorflow/docs_src/performance/xla/jit.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/docs_src/performance/xla/jit.md b/tensorflow/docs_src/performance/xla/jit.md
index d9a979ccbd..6724d1eaf8 100644
--- a/tensorflow/docs_src/performance/xla/jit.md
+++ b/tensorflow/docs_src/performance/xla/jit.md
@@ -137,12 +137,12 @@ TF_XLA_FLAGS=--xla_generate_hlo_graph=.* python mnist_softmax_xla.py
```
Open the timeline file created (`timeline.ctf.json`). The rendered timeline
-should look similar to the picture below with one long bar labeled `_XlaLaunch`.
+should look similar to the picture below with one long bar labeled `XlaLaunch`.
<div style="width:95%; margin:auto; margin-bottom:10px; margin-top:20px;">
<img style="width:100%" src="https://www.tensorflow.org/images/jit_timeline_gpu_xla.png">
</div>
-To understand what is happening in `_XlaLaunch`, look at the console output for
+To understand what is happening in `XlaLaunch`, look at the console output for
statements similar to the following:
```shell