aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/docs_src
diff options
context:
space:
mode:
authorGravatar Yifei Feng <yifeif@google.com>2018-07-17 12:20:20 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-07-17 12:23:28 -0700
commitbc13af4b9f2a76b6424af63da7f88aac4602c0cb (patch)
treecac8aba58257dd91b834dca4255c0af160cdda13 /tensorflow/docs_src
parent9b12cb84292d23522c1c3f75700d97d9f9af8abd (diff)
Fix sanity failure from cl/204944404
PiperOrigin-RevId: 204953899
Diffstat (limited to 'tensorflow/docs_src')
-rw-r--r--tensorflow/docs_src/performance/xla/developing_new_backend.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/docs_src/performance/xla/developing_new_backend.md b/tensorflow/docs_src/performance/xla/developing_new_backend.md
index 74ea15bb2b..840f6983c2 100644
--- a/tensorflow/docs_src/performance/xla/developing_new_backend.md
+++ b/tensorflow/docs_src/performance/xla/developing_new_backend.md
@@ -44,7 +44,7 @@ It is possible to model a new
implementation on the existing [`xla::CPUCompiler`]
(https://www.tensorflow.org/code/tensorflow/compiler/xla/service/cpu/cpu_compiler.cc)
and [`xla::GPUCompiler`]
-(https://www.tensorflow.org/code/tensorflow/compiler/xla/service/gpu/gpu_compiler.cc)
+(https://www.tensorflow.org/code/tensorflow/compiler/xla/service/gpu/nvptx_compiler.cc)
classes, since these already emit LLVM IR. Depending on the nature of the
hardware, it is possible that many of the LLVM IR generation aspects will have
to be changed, but a lot of code can be shared with the existing backends.