Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for forward_inputs_ (0.18 sec)

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

        for (auto input : forward_inputs_) {
          if (input) {
            input->Unref();
          }
        }
      }
    
     private:
      // TODO(b/174778737): Only hold needed inputs.
      vector<AbstractTensorHandle*> forward_inputs_;
    };
    
    class Log1pGradientFunction : public GradientFunction {
     public:
      explicit Log1pGradientFunction(vector<AbstractTensorHandle*> f_inputs)
          : forward_inputs_(f_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