aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/cc
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/cc')
-rw-r--r--tensorflow/cc/gradients/nn_grad_test.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/tensorflow/cc/gradients/nn_grad_test.cc b/tensorflow/cc/gradients/nn_grad_test.cc
index d8c2a1a0fc..f5a09e09dc 100644
--- a/tensorflow/cc/gradients/nn_grad_test.cc
+++ b/tensorflow/cc/gradients/nn_grad_test.cc
@@ -42,7 +42,6 @@ using ops::MaxPoolV2;
using ops::Placeholder;
using ops::Relu;
using ops::Relu6;
-using ops::LeakyRelu;
using ops::Selu;
using ops::Softmax;
using ops::Softplus;
@@ -165,7 +164,7 @@ TEST_F(NNGradTest, Relu6Grad) {
TEST_F(NNGradTest, LeakyReluGrad) {
TensorShape shape({5, 2});
auto x = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(shape));
- auto y = LeakyRelu(scope_, x);
+ auto y = ops::internal::LeakyRelu(scope_, x);
// Avoid input values where Leaky ReLU gradient is not well defined (around
// zero).
Tensor x_init_value = test::AsTensor<float>(