Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for skip (0.19 sec)

  1. tensorflow/c/eager/c_api_experimental.h

    // and set the device name. It's effectively `TFE_OpSetDevice`, but it is faster
    // than separately calling it because if the existing op has the same
    // `raw_device_name`, it skips parsing and just leave as it is.
    TF_CAPI_EXPORT extern void TFE_OpReset(TFE_Op* op_to_reset,
                                           const char* op_or_function_name,
                                           const char* raw_device_name,
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Feb 21 22:37:46 GMT 2024
    - 39.5K bytes
    - Viewed (0)
  2. 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