Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SplitIntoIslandPerOpPass (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/split_into_island_per_op_pass.cc

    #define GEN_PASS_DEF_SPLITINTOISLANDPEROPPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    class SplitIntoIslandPerOpPass
        : public impl::SplitIntoIslandPerOpPassBase<SplitIntoIslandPerOpPass> {
     public:
      void runOnOperation() override;
    };
    
    void SplitIntoIslandPerOpPass::runOnOperation() {
      func::FuncOp func = getOperation();
    
      if (func.isExternal()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let constructor = "CreateBreakUpIslandsPass()";
      let dependentDialects = ["mlir::tf_executor::TensorFlowExecutorDialect"];
    }
    
    def SplitIntoIslandPerOpPass : Pass<"tf-executor-split-into-island-per-op", "mlir::func::FuncOp"> {
      let summary = "Transform from TF control dialect to TF executor dialect.";
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top