Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for elseif (0.16 sec)

  1. tensorflow/c/eager/tape.h

                zero_indices.push_back(i);
              }
            }
          } else {
            any_gradient_nonzero = true;
            Gradient* new_gradients = nullptr;
            if (grad_it->second.size() == 1) {
              new_gradients = grad_it->second.at(0);
            } else {
              new_gradients = vspace.AggregateGradients(grad_it->second);
            }
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Apr 02 12:40:29 GMT 2024
    - 47.2K bytes
    - Viewed (1)
  2. tensorflow/c/eager/unified_api_testutil.h

    // Runs `model` maybe wrapped in a function call op. This can be thought as
    // being equivalent to the following python code.
    //
    // if use_function:
    //   outputs = tf.function(model)(inputs)
    // else:
    //   outputs = model(inputs)
    Status RunModel(Model model, AbstractContext* ctx,
                    absl::Span<AbstractTensorHandle* const> inputs,
                    absl::Span<AbstractTensorHandle*> outputs, bool use_function);
    
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Feb 27 13:57:45 GMT 2024
    - 4K bytes
    - Viewed (0)
Back to top