Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Skip (0.15 sec)

  1. tensorflow/c/eager/tape.h

        op_stack.pop_back();
        auto op_it = state.op_tape.find(op);
        if (op_it == state.op_tape.end()) {
          // It is possible for ops to end up on the stack if they are unrelated to
          // the target; we should just skip them.
          continue;
        }
        auto trace = std::move(op_it->second);
        state.op_tape.erase(op_it);
        std::vector<Gradient*> out_gradients;
        out_gradients.reserve(trace.output_tensor_info.size());
    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