Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[aot] Fix aot quantization for weight only quantization #2079

Merged
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
6 changes: 5 additions & 1 deletion serving/docker/partition/partition.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@

ALLOW_PATTERNS = ["*.json", "*.pt", "*.bin", "*.txt"]

WEIGHT_ONLY_QUANTIZATION_TYPES = ["static_int8"]


class PartitionService(object):

Expand Down Expand Up @@ -326,7 +328,9 @@ def main():
extract_python_jar(PYTHON_CACHE_DIR)

service = PartitionService(properties_manager)
if properties_manager.properties.get('option.quantize'):
if properties_manager.properties.get(
'option.quantize') and properties_manager.properties.get(
'option.quantize') not in WEIGHT_ONLY_QUANTIZATION_TYPES:
service.run_quantization()
else:
service.run_partition()
Expand Down
Loading