Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion extension/llm/export/quantizer_lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def get_qnn_quantizer(
quant_dtype = QuantDtype.use_16a16w # pyre-fixme[16]
# Due to the error with 16a16w in Qnn Htp, we need to disable per channel linear quantization when use 16a16w
# TODO: enable it after the issue is fixed
logging.warn(
logging.warning(
"Disable per channel quantization for linear due to the error with QNN HTP 16a16w."
)
qnn_quantizer.set_per_channel_linear_quant(enable=False)
Expand Down
Loading