-
Notifications
You must be signed in to change notification settings - Fork 258
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add auto quantization level as the default tuning process (#595)
Signed-off-by: yiliu30 <[email protected]>
- Loading branch information
Showing
8 changed files
with
408 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
# | ||
# Copyright (c) 2021 Intel Corporation | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
"""The auto tuning strategy.""" | ||
import copy | ||
from copy import deepcopy | ||
import numpy as np | ||
from collections import OrderedDict | ||
from .strategy import strategy_registry, TuneStrategy, STRATEGIES | ||
from ..utils import logger | ||
|
||
from .utils.tuning_sampler import OpTypeWiseTuningSampler, FallbackTuningSampler, ModelWiseTuningSampler | ||
from .utils.tuning_structs import OpTuningConfig | ||
from .utils.constant import TUNING_ITEMS_LST | ||
|
||
@strategy_registry | ||
class AutoTuneStrategy(TuneStrategy): | ||
"""The auto tuning strategy. | ||
There are three stages executed by auto strategy sequentially, | ||
and the tuning process ends once the condition meets the exit policy. | ||
""" | ||
|
||
def __init__(self, model, conf, q_dataloader=None, q_func=None, \ | ||
eval_dataloader=None, eval_func=None, resume=None, q_hooks=None): | ||
"""Init an auto tuning strategy. | ||
Args: | ||
model: The FP32 model specified for low precision tuning. | ||
conf: The Conf class instance includes all user configurations. | ||
q_dataloader: Data loader for calibration, mandatory for post-training quantization. Defaults to None. | ||
q_func: Training function for quantization aware training. Defaults to None. Defaults to None. | ||
eval_dataloader: Data loader for evaluation. Defaults to None. | ||
eval_func: The evaluation function provided by user. This function takes model as parameter, and | ||
evaluation dataset and metrics should be encapsulated in this function implementation and | ||
outputs a higher-is-better accuracy scalar value. | ||
resume: The dict containing resume information. Defaults to None. | ||
q_hooks: The dict of training hooks, supported keys are: on_epoch_begin, on_epoch_end, on_step_begin, | ||
on_step_end. Their values are functions to be executed in adaptor layer.. Defaults to None. | ||
""" | ||
super().__init__(model, conf, q_dataloader, q_func, eval_dataloader,\ | ||
eval_func, resume, q_hooks) | ||
logger.info(f"*** Start auto tuning") | ||
self.model = model | ||
self.conf = conf | ||
self.q_dataloader = q_dataloader | ||
self.q_func = q_func | ||
self.eval_dataloader = eval_dataloader | ||
self.eval_func = eval_func | ||
self.resume = resume | ||
self.q_hooks = q_hooks | ||
self.strategies_sequence = ['conservative', 'basic'] | ||
|
||
def sequential_traverse(self): | ||
"""Try different strategies sequentially.""" | ||
pre_strategy = self | ||
for strategy_name in self.strategies_sequence: | ||
logger.info(f"*** Start {strategy_name} tuning.") | ||
strategy = STRATEGIES[strategy_name](self.model, self.conf, self.q_dataloader, self.q_func, \ | ||
self.eval_dataloader, self.eval_func, self.resume, self.q_hooks) | ||
if pre_strategy: | ||
#TODO add tuning history from the previous stage to current stage. | ||
strategy.baseline = deepcopy(pre_strategy.baseline) | ||
strategy.trials_count = pre_strategy.trials_count | ||
strategy.objectives.baseline = deepcopy(pre_strategy.baseline) | ||
pre_strategy = strategy | ||
strategy.traverse() | ||
self.best_qmodel = strategy.best_qmodel | ||
if self.best_qmodel: | ||
return | ||
|
||
def next_tune_cfg(self): | ||
"""Generate and yield the default tuning config. | ||
Returns: | ||
tune_config (dict): A dict containing the tuning configuration for quantization. | ||
""" | ||
tuning_space = self.tuning_space | ||
calib_sampling_size_lst = tuning_space.root_item.get_option_by_name('calib_sampling_size').options | ||
_, _, op_tuning_cfg = self.initial_tuning_cfg() | ||
op_tuning_cfg['calib_sampling_size'] = calib_sampling_size_lst[0] | ||
logger.info(f"Quantize the model with default config.") | ||
yield op_tuning_cfg | ||
|
||
def traverse(self): | ||
"""Traverse the tuning space.""" | ||
# Quantize model with default config | ||
super().traverse() | ||
if self.best_qmodel: | ||
return | ||
else: | ||
# Start to try different strategies sequentially | ||
self.sequential_traverse() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.