Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getEntrySuccessorOperands (0.3 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    def TF_IfRegionOp : TF_Op<"IfRegion",
          [SingleBlockImplicitTerminator<"YieldOp">, NoRegionArguments,
           DeclareOpInterfaceMethods<RegionBranchOpInterface, [
               "areTypesCompatible",
               "getEntrySuccessorOperands",
               "getRegionInvocationBounds",
               "getSuccessorRegions"
           ]>
          ]> {
      let summary = "output = cond ? then_branch output : else_branch output";
    
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      invocationBounds.emplace_back(InvocationBounds::getUnknown());  // next
      invocationBounds.emplace_back(InvocationBounds(1, 1));          // finalize
    }
    
    OperandRange GeneratorDatasetRegionOp::getEntrySuccessorOperands(
        RegionBranchPoint point) {
      auto end = this->getOperation()->operand_end();
      if (point.isParent()) {
        // The op itself doesn't branch back to itself.
        return ::mlir::OperandRange(end, end);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    // WhileRegionOp RegionBranchOpInterface
    //===----------------------------------------------------------------------===//
    
    OperandRange WhileRegionOp::getEntrySuccessorOperands(
        RegionBranchPoint point) {
      if (point.isParent()) {
        // WhileRegionOp branches to the condition, which branches to the body. But
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
Back to top