Skip to content

Commit 080f8b0

Browse files
authored
Updated the links in create_op.md
Updated the link for relu_op_test.py, TensorFlow binary & downloaded TensorFlow source
1 parent 49c6a1b commit 080f8b0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

site/en/guide/create_op.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,16 +47,16 @@ To incorporate your custom op you'll need to:
4747
test the op in C++. If you define gradients, you can verify them with the
4848
Python `tf.test.compute_gradient_error`.
4949
See
50-
[`relu_op_test.py`](https://www.tensorflow.org/code/tensorflow/python/kernel_tests/relu_op_test.py) as
50+
[`relu_op_test.py`](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/python/kernel_tests/nn_ops/relu_op_test.py) as
5151
an example that tests the forward functions of Relu-like operators and
5252
their gradients.
5353

5454
### Prerequisites
5555

5656
* Some familiarity with C++.
5757
* Must have installed the
58-
[TensorFlow binary](../../install), or must have
59-
[downloaded TensorFlow source](../../install/source.md),
58+
[TensorFlow binary](https://github.com/tensorflow/docs/blob/master/site/en/install), or must have
59+
[downloaded TensorFlow source](https://github.com/tensorflow/docs/blob/master/site/en/install/source.md),
6060
and be able to build it.
6161

6262
## Define the op interface

0 commit comments

Comments
 (0)