Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Continue (0.31 sec)

  1. tensorflow/c/eager/parallel_device/parallel_device_lib.h

      // fully defined will avoid querying the shapes of the underlying
      // TensorHandles when ParallelTensor::Shape is called. This allows async
      // computation to continue without blocking.
      //
      // The return status and value is the same as `Execute`.
      absl::optional<std::vector<std::unique_ptr<ParallelTensor>>> Join(
          const std::vector<PartialTensorShape>& expected_output_shapes,
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Apr 25 15:21:13 GMT 2023
    - 12.9K bytes
    - Viewed (0)
  2. tensorflow/c/c_api.h

        // Target operations
        const TF_Operation* const* target_opers, int ntargets,
        // Output handle
        const char** handle,
        // Output status
        TF_Status*);
    
    // Continue to run the graph with additional feeds and fetches. The
    // execution state is uniquely identified by the handle.
    TF_CAPI_EXPORT extern void TF_SessionPRun(
        TF_Session*, const char* handle,
        // Input tensors
    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)
  3. tensorflow/c/eager/tape.h

        if (op_id_it == tensor_tape.end()) {
          continue;
        }
        int64_t op_id = op_id_it->second;
        auto op_it = op_tape->find(op_id);
        auto result_op_it = result.op_tape.find(op_id);
        if (op_id == -1 || op_it == op_tape->end() ||
            result_op_it != result.op_tape.end()) {
          continue;
        }
        CHECK(result.op_tape.emplace(op_id, op_it->second).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)
Back to top