Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for InsertWeightParamPass (0.27 sec)

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

    // dynamic range quantization of `stablehlo.convolution` and
    // `stablehlo.dot_general`.
    class InsertWeightParamPass
        : public impl::InsertWeightParamPassBase<InsertWeightParamPass> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(InsertWeightParamPass)
    
      using impl::InsertWeightParamPassBase<
          InsertWeightParamPass>::InsertWeightParamPassBase;
    
     private:
      void runOnOperation() override;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 05:56:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.td

        convolution conversion, to avoid introducing unwanted pessimizations.
      }];
      let dependentDialects = ["mlir::stablehlo::StablehloDialect"];
    }
    
    def InsertWeightParamPass : Pass<"stablehlo-insert-weight-param", "mlir::func::FuncOp"> {
      let summary = "Insert quantization parameters of weights for weight-only quantization and dynamic range quantization.";
      let dependentDialects = [
    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