Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CreateTPURewritePass (0.19 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/runtime_passes.td

      ];
    
      let dependentDialects = [
        "mlir::mhlo::MhloDialect",
        "mlir::tf_device::TensorFlowDeviceDialect"
      ];
      let constructor = "mlir::TFTPU::CreateTPURewritePass()";
    }
    
    def TPUVariableRuntimeReformattingPass : Pass<"tf-tpu-variable-runtime-reformatting", "ModuleOp"> {
      let summary = "Adds device variable formatting op to allow compilation-guided "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 18:58:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_rewrite_pass.cc

          }
          op.erase();
        }
      }
    
      // TODO(b/139377366): Remove functions that are no longer needed.
    }
    
    }  // namespace
    
    std::unique_ptr<OperationPass<ModuleOp>> CreateTPURewritePass(
        llvm::StringRef module_name) {
      return std::make_unique<TPURewritePass>(module_name);
    }
    
    }  // namespace TFTPU
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top