Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for grad_inputs_ (0.14 sec)

  1. tensorflow/cc/gradients/math_grad.cc

      if (!ta && !tb) {
        return MatMulGradHelper(scope, is_batch, grad_inputs[0], false, b, true,
                                a.type(), a, true, grad_inputs[0], false, b.type(),
                                grad_outputs);
      } else if (!ta && tb) {
        return MatMulGradHelper(scope, is_batch, grad_inputs[0], false, b, false,
                                a.type(), grad_inputs[0], true, a, false, b.type(),
                                grad_outputs);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_test.cc

          TF_Output grad_inputs[1];
          const float grad_inputs_val[] = {1.0, 1.0, 1.0, 1.0};
          TF_Operation* grad_inputs_op =
              FloatConst2x2(graph_, s_, grad_inputs_val, "GradInputs");
          grad_inputs[0] = TF_Output{grad_inputs_op, 0};
          TF_AddGradientsWithPrefix(graph_, prefix, outputs, noutputs, inputs,
                                    ninputs, grad_inputs, s_, grad_outputs);
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
Back to top