Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CreateIsland (0.11 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/breakup-islands.cc

      }
    }
    
    // Helper that creates an island. If `sub_op` is not nullptr, it will be moved
    // to the island. Otherwise a NoOp will be added to the island.
    tf_executor::IslandOp CreateIsland(TypeRange result_types,
                                       ValueRange control_inputs,
                                       const tf_executor::ControlType& control_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 20:52:36 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/split_into_island_per_op_pass.cc

        for (const auto& it : llvm::enumerate(identity_n.getResults()))
          yield.setOperand(it.index(), it.value());
      }
    }
    
    // Helper that creates an island that `sub_op` will be moved to.
    tf_executor::IslandOp CreateIsland(TypeRange result_types,
                                       const tf_executor::ControlType& control_type,
                                       const Location& loc, Operation& sub_op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

            chain_arg.getLoc(), chain_arg.getType(), chain_arg);
        auto chain_src_island = CreateIsland(src_identity, {}, builder_chain_src);
    
        auto sink_identity = builder_chain_sink.create<TF::IdentityOp>(
            chain_arg.getLoc(), chain_arg.getType(), chain_arg);
        auto chain_sink_island =
            CreateIsland(sink_identity, {}, builder_chain_sink);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
Back to top