Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CreateQuantizeWeightPass (0.18 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)
Back to top