Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for RestoreFunctionNamePass (0.25 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/restore_function_name.cc

    // This restoration is required because StableHLO functions are renamed during
    // the XlaCallModuleSerialization.
    class RestoreFunctionNamePass
        : public impl::RestoreFunctionNamePassBase<RestoreFunctionNamePass> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(RestoreFunctionNamePass)
    
      explicit RestoreFunctionNamePass() = default;
    
      void runOnOperation() override;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 08:32:43 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.td

         tf.XlaCallModuleOps as separate subgraphs. Wires them back to the main
         function block to be compatible with SavedModel structure.
      }];
    }
    
    def RestoreFunctionNamePass : Pass<"stablehlo-restore-function-name", "ModuleOp"> {
      let summary = "Restores function name from XlaCallModule op.";
    }
    
    def QuantizeCompositeFunctionsPass : Pass<"stablehlo-quantize-composite-functions", "ModuleOp"> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top