Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for CreateQuantizeWeightPass (0.31 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/quantize_passes.cc

            weight_component = component;
            break;
          default:
            break;
        }
      }
      pass_manager.addNestedPass<mlir::func::FuncOp>(
          mlir::quant::stablehlo::CreateQuantizeWeightPass(weight_component));
    }
    
    }  // namespace quantization
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 08:32:43 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.h

    namespace mlir::quant::stablehlo {
    
    // Creates a pass that quantizes weight component of StableHLO graph.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateQuantizeWeightPass(
        const ::stablehlo::quantization::QuantizationComponentSpec&
            quantization_component_spec = {});
    
    // Converts a serialized StableHLO module to bfloat16 and output serialized
    // module.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantize_weight.cc

        signalPassFailure();
      }
    }
    
    }  // namespace
    
    // Creates an instance of the StableHLO dialect Quantize Weight pass.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateQuantizeWeightPass(
        const QuantizationComponentSpec& quantization_component_spec) {
      return std::make_unique<QuantizeWeightPass>(quantization_component_spec);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.td

      let summary = "Quantizes the weight component of StableHLO graph.";
      let dependentDialects = ["mlir::stablehlo::StablehloDialect"];
      let constructor = "mlir::quant::stablehlo::CreateQuantizeWeightPass()";
    }
    
    def UnfuseMhloBatchNormPass : Pass<"stablehlo-unfuse-mhlo-batch-norm", "mlir::func::FuncOp"> {
      let summary = "Unfuses batch normalization into arithmetic ops.";
    }
    
    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