Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. tensorflow/c/eager/tape.h

        const std::unordered_map<int64_t, int64_t>& op_missing_tensor) {
      std::vector<int64_t> result;
      for (auto& op_entry : op_tape) {
        if (op_missing_tensor.find(op_entry.first) == op_missing_tensor.end()) {
          result.push_back(op_entry.first);
        }
      }
      return result;
    }
    
    template <typename Gradient, typename BackwardFunction, typename TapeTensor>
    Status InitialGradients(
    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/c_api.h

    //       .Output("output: T")
    //       .Attr("N: int >= 2")
    //       .Attr("T: type");
    // that defines two inputs, "concat_dim" and "values" (in that order).
    // You must use TF_AddInput() for the first input (since it takes a
    // single tensor), and TF_AddInputList() for the second input (since
    // it takes a list, even if you were to pass a list with a single
    // tensor), as in:
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
Back to top