Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for first (0.19 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)
Back to top