Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for XlaCallModuleSerializationPass (0.23 sec)

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

      module.walk([&](func::FuncOp f) {
        if (f->hasAttr(kFromXlaCallModuleAttrName)) {
          f->erase();
        }
      });
    }
    
    class XlaCallModuleSerializationPass
        : public impl::XlaCallModuleSerializationPassBase<
              XlaCallModuleSerializationPass> {
     public:
      void runOnOperation() override {
        mlir::ModuleOp module = getOperation();
        mlir::SymbolTableCollection symbol_table;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        "stablehlo::StablehloDialect",
        "vhlo::VhloDialect",
        "quant::QuantizationDialect",
      ];
    
      let constructor = "TF::CreateXlaCallModuleDeserializationPass()";
    }
    
    def XlaCallModuleSerializationPass
        : Pass<"tf-xla-call-module-serialization", "ModuleOp"> {
      let summary = "Serializes StableHLO functions from top-level module into `tf.XlaCallModule`'s `module` attribute";
    
      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