Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for MulRegisterer (0.16 sec)

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

    GradientFunction* NegRegisterer(const ForwardOperation& op) {
      return new NegGradientFunction;
    }
    
    GradientFunction* SubRegisterer(const ForwardOperation& op) {
      return new SubGradientFunction;
    }
    
    GradientFunction* MulRegisterer(const ForwardOperation& op) {
      return new MulGradientFunction(op.inputs);
    }
    
    GradientFunction* Log1pRegisterer(const ForwardOperation& op) {
      return new Log1pGradientFunction(op.inputs);
    }
    
    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