From b1325838aaf902e52fae4b085c6396848c445062 Mon Sep 17 00:00:00 2001 From: Tong Shen Date: Fri, 5 Oct 2018 11:13:53 -0700 Subject: Declare that stateless random ops are not differentiable in C++ code. PiperOrigin-RevId: 215935319 --- tensorflow/core/BUILD | 1 + tensorflow/core/ops/stateless_random_grad.cc | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 tensorflow/core/ops/stateless_random_grad.cc (limited to 'tensorflow/core') diff --git a/tensorflow/core/BUILD b/tensorflow/core/BUILD index 6a3ee3c1cb..900a0e11c4 100644 --- a/tensorflow/core/BUILD +++ b/tensorflow/core/BUILD @@ -1242,6 +1242,7 @@ cc_library( srcs = [ "ops/math_grad.cc", "ops/random_grad.cc", + "ops/stateless_random_grad.cc", ], linkstatic = 1, # Needed since alwayslink is broken in bazel b/27630669 visibility = ["//visibility:public"], diff --git a/tensorflow/core/ops/stateless_random_grad.cc b/tensorflow/core/ops/stateless_random_grad.cc new file mode 100644 index 0000000000..331e1d0152 --- /dev/null +++ b/tensorflow/core/ops/stateless_random_grad.cc @@ -0,0 +1,23 @@ +/* Copyright 2018 The TensorFlow Authors. All Rights Reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +==============================================================================*/ + +#include "tensorflow/core/framework/function.h" + +namespace tensorflow { +REGISTER_OP_NO_GRADIENT("StatelessRandomUniform"); +REGISTER_OP_NO_GRADIENT("StatelessRandomNormal"); +REGISTER_OP_NO_GRADIENT("StatelessTruncatedNormal"); +REGISTER_OP_NO_GRADIENT("StatelessMultinomial"); +} // end namespace tensorflow -- cgit v1.2.3