Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CreateExecutorDialectToFunctionalConversionPass (2.48 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_executor_to_functional.cc

        return WalkResult::advance();
      });
      if (result.wasInterrupted()) signalPassFailure();
    }
    }  // end anonymous namespace
    
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateExecutorDialectToFunctionalConversionPass() {
      return std::make_unique<ExecutorDialectToFunctionalConversion>();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 20:52:36 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/integration/tfr_decompose_ctx.cc

        : tfr_module_(tfr_module), pm_(tfr_module_.getContext()) {
      mlir::OpPassManager& func_pm = pm_.nest<mlir::func::FuncOp>();
    
      // Prepare the imported graph.
      func_pm.addPass(mlir::CreateExecutorDialectToFunctionalConversionPass());
    
      // Run TFR lowering, inlining and raising to tf.
      func_pm.addPass(mlir::TFR::CreateDecomposeTFOpsPass(tfr_module_));
      func_pm.addPass(mlir::TFR::CreateRaiseToTFOpsPass(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 29 02:34:43 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top