Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PartitionedCallOps (0.21 sec)

  1. tensorflow/c/experimental/saved_model/core/revived_types/flat_tensor_function.cc

      // TODO(bmzhao): After discussing with Allen, we should execute this via a
      // PartitionedCallOp for compatibility with "tooling that assumes functions in
      // graphs are PartitionedCallOps".
      TF_RETURN_IF_ERROR((*out)->Reset(name_.c_str(), nullptr));
    
      // Adding the user-provided inputs to the function.
      TF_RETURN_IF_ERROR((*out)->AddInputList(inputs));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      // Replace uses.
      op.replaceAllUsesWith(new_op.getResults().take_front(op.getNumResults()));
      op.erase();
      return success();
    }
    
    // A resource-lifted function for (potentially multiple) PartitionedCallOps and
    // information about the lifting changes.
    struct PartitionedCallLiftingInfo {
      // Function with resources lifted. Can be nullptr if nothing needs to change.
      func::FuncOp lifted_callee;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top