Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ExpRegisterer (0.23 sec)

  1. tensorflow/c/experimental/gradients/math_grad.h

    #include "tensorflow/c/eager/gradients.h"
    
    namespace tensorflow {
    namespace gradients {
    
    GradientFunction* AddRegisterer(const ForwardOperation& op);
    GradientFunction* ExpRegisterer(const ForwardOperation& op);
    GradientFunction* MatMulRegisterer(const ForwardOperation& op);
    GradientFunction* SqrtRegisterer(const ForwardOperation& op);
    GradientFunction* NegRegisterer(const ForwardOperation& op);
    C
    - Registered: Tue Mar 26 12:39:09 GMT 2024
    - Last Modified: Thu Dec 03 22:28:48 GMT 2020
    - 1.5K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/gradients/math_grad_test.cc

            immediate_execution_ctx_.get(), 2.0f, &x_raw);
        ASSERT_EQ(errors::OK, status_.code()) << status_.message();
        x.reset(x_raw);
      }
    
      status_ = registry_.Register("Exp", ExpRegisterer);
      ASSERT_EQ(errors::OK, status_.code()) << status_.message();
    
      ASSERT_NO_FATAL_FAILURE(CompareNumericalAndAutodiffGradients(
          ExpModel, BuildGradModel(ExpModel, registry_),
    C++
    - Registered: Tue Mar 26 12:39:09 GMT 2024
    - Last Modified: Thu Apr 13 17:32:14 GMT 2023
    - 16.3K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/gradients/math_grad.cc

      vector<AbstractTensorHandle*> forward_outputs_;
    };
    
    }  // namespace
    
    GradientFunction* AddRegisterer(const ForwardOperation& op) {
      return new AddGradientFunction;
    }
    
    GradientFunction* ExpRegisterer(const ForwardOperation& op) {
      return new ExpGradientFunction(op.outputs[0]);
    }
    
    GradientFunction* MatMulRegisterer(const ForwardOperation& op) {
      return new MatMulGradientFunction(op.inputs, op.attrs);
    }
    
    C++
    - Registered: Tue Mar 26 12:39:09 GMT 2024
    - Last Modified: Wed Feb 28 13:53:47 GMT 2024
    - 15.2K bytes
    - Viewed (0)
Back to top