Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SHLOSimplifyPass (0.16 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/transforms/shlo_simplify.cc

    // for canonicalization and folding which is not offered directly by the
    // shlo implementation.
    class SHLOSimplifyPass : public impl::SHLOSimplifyPassBase<SHLOSimplifyPass> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(SHLOSimplifyPass)
    
      void runOnOperation() override {
        ModuleOp module = getOperation();
        RewritePatternSet patterns(&getContext());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 03:05:20 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/passes.td

      }];
    
      let options = [];
      let constructor = "CreateOutlineCompositesPass()";
      let dependentDialects = ["mlir::chlo::ChloDialect", "mlir::stablehlo::StablehloDialect", "mlir::func::FuncDialect"];
    }
    
    def SHLOSimplifyPass: Pass<"shlo-simplify", "ModuleOp"> {
      let summary = "Apply internal canonicalizations and foldings.";
      let description = [{
        Applies various internally defined patterns.
      }];
    
      let options = [
    
      ];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:05:30 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top