Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MoveTpuCompileToFrontPass (0.18 sec)

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

    namespace mlir {
    namespace TF {
    
    namespace {
    
    #define GEN_PASS_DEF_MOVETPUCOMPILETOFRONTPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    struct MoveTpuCompileToFrontPass
        : public impl::MoveTpuCompileToFrontPassBase<MoveTpuCompileToFrontPass> {
      void runOnOperation() override;
    };
    
    void MarkCompilationOps(Operation* func) {
      func->walk([&](Operation* op) {
        if (llvm::isa<TF::_TPUCompileMlirOp>(op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 17 00:26:18 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        pipeline where you want to dump, and are able to easily modify the pipeline
        source code.
      }];
      let constructor = "TF::CreatePrintPass()";
    }
    
    def MoveTpuCompileToFrontPass : Pass<"tf-move-tpu-compile-to-front", "mlir::func::FuncOp"> {
      let summary = "Moves compile ops to the front.";
      let description = [{
        Moves all _TPUCompileMlir ops as far to the front as possible. For example,
    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