Skip to content

Commit

Permalink
Fix tfcompile module label. (tensorflow#16582)
Browse files Browse the repository at this point in the history
  • Loading branch information
andykernahan authored and jhseu committed Apr 23, 2018
1 parent f318765 commit 06d5ca2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tensorflow/docs_src/performance/xla/tfcompile.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ code. `tf_library` utilizes `tfcompile` to compile the TensorFlow graph into
executable code.

```build
load("//third_party/tensorflow/compiler/aot:tfcompile.bzl", "tf_library")
load("//tensorflow/compiler/aot:tfcompile.bzl", "tf_library")
# Use the tf_library macro to compile your graph into executable code.
tf_library(
Expand Down Expand Up @@ -258,8 +258,8 @@ file.

```build
# Example of linking your binary
# Also see //third_party/tensorflow/compiler/aot/tests/BUILD
load("//third_party/tensorflow/compiler/aot:tfcompile.bzl", "tf_library")
# Also see //tensorflow/compiler/aot/tests/BUILD
load("//tensorflow/compiler/aot:tfcompile.bzl", "tf_library")
# The same tf_library call from step 2 above.
tf_library(
Expand Down

0 comments on commit 06d5ca2

Please sign in to comment.