nncase Model Compilation API Manual#
Overview#
nncase is a neural network compiler designed for AI accelerators. The API provided in this document is the python API used by users to convert trained TFLite models or ONNX models into a model format that can be accelerated using kpu, namely kmodel. Currently, the model compilation APIs support deep learning models in formats such as TFLite/ONNX. The API provided in this document is used to compile kmodel on a local PC, and it is not the code that runs on k230. For learning about nncase, please refer to: nncase github repo.
API Introduction#
CompileOptions#
【Description】
The CompileOptions class is used to configure nncase compilation options. Each attribute is described as follows:
Attribute Name |
Type |
Required |
Description |
|---|---|---|---|
target |
string |
Yes |
Specify the compilation target, such as ‘cpu’, ‘k230’ |
dump_ir |
bool |
No |
Specify whether to dump IR, default is False |
dump_asm |
bool |
No |
Specify whether to dump asm assembly files, default is False |
dump_dir |
string |
No |
After specifying dump switches such as dump_ir, specify the dump directory here, default is “” |
input_file |
string |
No |
When the ONNX model exceeds 2GB, used to specify the parameter file path, default is “” |
preprocess |
bool |
No |
Whether to enable preprocessing, default is False. The following parameters only take effect when |
input_type |
string |
No |
Specify the input data type when preprocessing is enabled, default is “float”. When |
input_shape |
list[int] |
No |
Specify the shape of input data when preprocessing is enabled, default is []. Must be specified when |
input_range |
list[float] |
No |
Specify the float range after dequantization of input data when preprocessing is enabled, default is []. Must be specified when |
input_layout |
string |
No |
Specify the layout of input data, default is “” |
swapRB |
bool |
No |
Whether to reverse data in the |
mean |
list[float] |
No |
Mean for preprocessing normalization parameters, default is [0,0,0] |
std |
list[float] |
No |
Variance for preprocessing normalization parameters, default is [1,1,1] |
letterbox_value |
float |
No |
Specify the padding value for preprocessing letterbox, default is 0 |
output_layout |
string |
No |
Specify the layout of output data, default is “” |
shape_bucket_enable |
bool |
Yes |
Whether to enable the ShapeBucket function, default is False. Takes effect when |
shape_bucket_range_info |
Dict[str, [int, int]] |
Yes |
The range of variables in the dimension information of each input shape, the minimum value must be greater than or equal to 1 |
shape_bucket_segments_count |
int |
Yes |
The number of segments into which the range of input variables is divided |
shape_bucket_fix_var_map |
Dict[str, int] |
No |
Fix the variables in the shape dimension information to specific values |
Preprocessing Flow Description#
Currently, custom preprocessing order is not supported. You can select the required preprocessing parameters for configuration based on the following flow diagram.
(shape = input_shape
dtype = input_type)") -->a(input_layout != ' ')-.Y.->Transpose1["transpose"] -.->b("SwapRB == True")-.Y.->SwapRB["SwapRB"]-.->c("input_type != float32")-.Y.->Dequantize["Dequantize"]-.->d("input_HW != model_HW")-.Y.->LetterBox["LetterBox"] -.->e("std not empty
mean not empty")-.Y.->Normalization["Normalization"]-.->OldInput-->Model_body-->OldOutput-->f("output_layout != ' '")-.Y.->Transpose2["Transpose"]-.-> NewOutput; a--N-->b--N-->c--N-->d--N-->e--N-->OldInput; f--N-->NewOutput; subgraph origin_model OldInput; Model_body ; OldOutput; end
Parameter description:
input_rangeis the float range after dequantization when the input data type is fixed-point.a. When the input data type is uint8 and the range is [0,255], and
input_rangeis [0,255], the dequantization only performs type conversion, converting the uint8 data to float32. Themeanandstdparameters should still be specified based on data in the range [0,255].b. When the input data type is uint8 and the range is [0,255], and
input_rangeis [0,1], the dequantization will convert the fixed-point numbers to floating-point numbers in [0,1]. Themeanandstdparameters need to be specified based on data in the range 0~1.graph TD; NewInput_uint8("NewInput_uint8
[input_type:uint8]") --input_range:0,255 -->dequantize_0["Dequantize"]--float range:0,255--> OldInput_float32 NewInput_uint81("NewInput_uint8
[input_type:uint8]") --input_range:0,1 -->dequantize_1["Dequantize"]--float range:0,1--> OldInput_float32input_shapeis the shape of the input data, and the layout isinput_layout. Currently, string ("NHWC","NCHW") and index are supported asinput_layout, and non-4D data processing is supported. Wheninput_layoutis configured in string form, it represents the layout of the input data; wheninput_layoutis configured in index form, it means that the input data will be transposed according to the currently configuredinput_layout, i.e.,input_layoutis thepermparameter ofTranspose.
output_layout is similar, as shown in the figure below.
NHWC"); OldOutput("OldOutput: (NCHW)") --"output_layout: "0,2,3,1""--> Transpose4("Transpose perm: 0,2,3,1") --> NewOutput("NewOutput
NHWC"); end
Dynamic Shape Parameter Description#
ShapeBucket is a solution for dynamic shapes. It optimizes the dynamic shape based on the range of input lengths and the specified number of segments. This function is disabled by default and needs to be enabled by turning on the corresponding option. Apart from specifying the corresponding field information, the other processes are no different from compiling a static model.
ONNX
There will be some dimensions in the shape of the model as variable names. Here is an example of an ONNX model’s input.
tokens: int64[batch_size, tgt_seq_len] step: float32[seq_len, batch_size]
There are three variables in the shape dimension information: seq_len, tgt_seq_len, and batch_size.
First, batch_size, although it is a variable, is fixed to 3 in actual use. Therefore, add batch_size = 3 to fix_var_map, and this dimension will be fixed to 3 at runtime.
seq_len and tgt_seq_len are the two that actually change, so the actual range of these two variables needs to be configured, which is the range_info information. segments_count is the actual number of segments, which will be divided into equal parts according to the range. The corresponding compilation time will also increase accordingly.
The following is an example of the corresponding compilation parameters:
compile_options = nncase.CompileOptions()
compile_options.shape_bucket_enable = True
compile_options.shape_bucket_range_info = {"seq_len": [1, 100], "tgt_seq_len": [1, 100]}
compile_options.shape_bucket_segments_count = 2
compile_options.shape_bucket_fix_var_map = {"batch_size": 3}
TFLite
TFLite models are different from ONNX. The dimension names are not marked on the shape. Currently, it only supports having one dimension in the input that is dynamic, and the name is uniformly configured as -1. The configuration is as follows:
compile_options = nncase.CompileOptions()
compile_options.shape_bucket_enable = True
compile_options.shape_bucket_range_info = {"-1":[1, 100]}
compile_options.shape_bucket_segments_count = 2
compile_options.shape_bucket_fix_var_map = {"batch_size" : 3}
After configuring these options, the entire compilation process is consistent with the static shape.
Parameter Configuration Example#
Instantiate CompileOptions and configure the values of each attribute.
compile_options = nncase.CompileOptions()
compile_options.target = "cpu" #"k230"
compile_options.dump_ir = True # if False, will not dump the compile-time result.
compile_options.dump_asm = True
compile_options.dump_dir = "dump_path"
compile_options.input_file = ""
# preprocess args
compile_options.preprocess = False
if compile_options.preprocess:
compile_options.input_type = "uint8" # "uint8" "float32"
compile_options.input_shape = [1,224,320,3]
compile_options.input_range = [0,1]
compile_options.input_layout = "NHWC" # "NHWC" ”NCHW“
compile_options.swapRB = False
compile_options.mean = [0,0,0]
compile_options.std = [1,1,1]
compile_options.letterbox_value = 0
compile_options.output_layout = "NHWC" # "NHWC" "NCHW"
# Dynamic shape args
compile_options.shape_bucket_enable = False
if compile_options.shape_bucket_enable:
compile_options.shape_bucket_range_info = {"seq_len": [1, 100], "tgt_seq_len": [1, 100]}
compile_options.shape_bucket_segments_count = 2
compile_options.shape_bucket_fix_var_map = {"batch_size": 3}
ImportOptions#
【Description】
The ImportOptions class is used to configure nncase import options.
【Definition】
class ImportOptions:
def __init__(self) -> None:
pass
【Example】
Instantiate ImportOptions and configure the values of each attribute.
#import_options
import_options = nncase.ImportOptions()
PTQTensorOptions#
【Description】
The PTQTensorOptions class is used to configure nncase PTQ options.
Name |
Type |
Required |
Description |
|---|---|---|---|
samples_count |
int |
No |
Specifies the number of calibration sets used for quantization |
calibrate_method |
string |
No |
Specifies the quantization method, options are ‘NoClip’ and ‘Kld’, default is ‘Kld’ |
finetune_weights_method |
string |
No |
Specifies whether to fine-tune weights, options are ‘NoFineTuneWeights’ and ‘UseSquant’, default is ‘NoFineTuneWeights’ |
quant_type |
string |
No |
Specifies the data quantization type, options are ‘uint8’, ‘int8’, ‘int16’. |
w_quant_type |
string |
No |
Specifies the weight quantization type, options are ‘uint8’, ‘int8’, ‘int16’. |
quant_scheme |
string |
No |
The path to the import quantization parameter configuration file |
quant_scheme_strict_mode |
bool |
No |
Whether to strictly execute quantization according to quant_scheme |
export_quant_scheme |
bool |
No |
Whether to export the quantization parameter configuration file |
export_weight_range_by_channel |
bool |
No |
Whether to export the weights quantization parameters in |
For the specific usage flow of mixed quantization, see MixQuant Description.
【Example】
# ptq_options
ptq_options = nncase.PTQTensorOptions()
ptq_options.samples_count = 6
ptq_options.finetune_weights_method = "NoFineTuneWeights"
ptq_options.quant_type = "uint8"
ptq_options.w_quant_type = "uint8"
ptq_options.set_tensor_data(generate_data(input_shape, ptq_options.samples_count, args.dataset))
ptq_options.quant_scheme = ""
ptq_options.quant_scheme_strict_mode = False
ptq_options.export_quant_scheme = True
ptq_options.export_weight_range_by_channel = True
compiler.use_ptq(ptq_options)
set_tensor_data#
【Description】
Set tensor data, set the calibration data during model conversion.
【Definition】
def set_tensor_data(self, data: List[List[np.ndarray]]) -> None:
reshape_data = list(map(list, zip(*data)))
self.cali_data = [RuntimeTensor.from_numpy(
d) for d in itertools.chain.from_iterable(reshape_data)]
【Parameters】
Name |
Type |
Description |
|---|---|---|
data |
List[List[np.ndarray]] |
The read calibration data |
【Return Value】
None.
【Example】
# ptq_options
ptq_options = nncase.PTQTensorOptions()
ptq_options.samples_count = 6
ptq_options.set_tensor_data(generate_data(input_shape, ptq_options.samples_count, args.dataset))
compiler.use_ptq(ptq_options)
Compiler#
【Description】
The Compiler class is used to compile neural network models.
【Definition】
class Compiler:
_target: _nncase.Target
_session: _nncase.CompileSession
_compiler: _nncase.Compiler
_compile_options: _nncase.CompileOptions
_quantize_options: _nncase.QuantizeOptions
_module: IRModule
import_tflite#
【Description】
Import a TFLite model.
【Definition】
def import_tflite(self, model_content: bytes, options: ImportOptions) -> None:
self._compile_options.input_format = "tflite"
self._import_module(model_content)
【Parameters】
Name |
Type |
Description |
|---|---|---|
model_content |
byte[] |
The read model content |
import_options |
ImportOptions |
Import options |
【Return Value】
None.
【Example】
model_content = read_model_file(model)
compiler.import_tflite(model_content, import_options)
import_onnx#
【Description】
Import an ONNX model.
【Definition】
def import_onnx(self, model_content: bytes, options: ImportOptions) -> None:
self._compile_options.input_format = "onnx"
self._import_module(model_content)
【Parameters】
Name |
Type |
Description |
|---|---|---|
model_content |
byte[] |
The read model content |
import_options |
ImportOptions |
Import options |
【Return Value】
None.
【Example】
model_content = read_model_file(model)
compiler.import_onnx(model_content, import_options)
use_ptq#
【Description】
Set the PTQ configuration options.
Quantization must be used by default on K230.
【Definition】
use_ptq(ptq_options)
【Parameters】
Name |
Type |
Description |
|---|---|---|
ptq_options |
PTQTensorOptions |
PTQ configuration options |
【Return Value】
None.
【Example】
compiler.use_ptq(ptq_options)
compile#
【Description】
Compile the neural network model.
【Definition】
compile()
【Parameters】
None.
【Return Value】
None.
【Example】
compiler.compile()
gencode_tobytes#
【Description】
Generate the kmodel byte stream.
【Definition】
gencode_tobytes()
【Parameters】
None.
【Return Value】
bytes[]
【Example】
kmodel = compiler.gencode_tobytes()
with open(os.path.join(infer_dir, 'test.kmodel'), 'wb') as f:
f.write(kmodel)
Example#
Compile TFLite Model#
The example compilation script is as follows:
import os
import argparse
import numpy as np
from PIL import Image
import nncase
def read_model_file(model_file):
with open(model_file, 'rb') as f:
model_content = f.read()
return model_content
def generate_data(shape, batch, calib_dir):
img_paths = [os.path.join(calib_dir, p) for p in os.listdir(calib_dir)]
data = []
for i in range(batch):
assert i < len(img_paths), "calibration images not enough."
img_data = Image.open(img_paths[i]).convert('RGB')
img_data = img_data.resize((shape[3], shape[2]), Image.BILINEAR)
img_data = np.asarray(img_data, dtype=np.uint8)
img_data = np.transpose(img_data, (2, 0, 1))
data.append([img_data[np.newaxis, ...]])
return data
def main():
parser = argparse.ArgumentParser(prog="nncase")
parser.add_argument("--target", type=str, help='target to run')
parser.add_argument("--model", type=str, help='model file')
parser.add_argument("--dataset", type=str, help='calibration_dataset')
args = parser.parse_args()
input_shape = [1, 3, 224, 224]
dump_dir = 'tmp/mbv2_tflite'
# compile_options
compile_options = nncase.CompileOptions()
compile_options.target = args.target
compile_options.preprocess = True
compile_options.swapRB = False
compile_options.input_shape = input_shape
compile_options.input_type = 'uint8'
compile_options.input_range = [0, 255]
compile_options.mean = [127.5, 127.5, 127.5]
compile_options.std = [127.5, 127.5, 127.5]
compile_options.input_layout = 'NCHW'
compile_options.dump_ir = True
compile_options.dump_asm = True
compile_options.dump_dir = dump_dir
# compiler
compiler = nncase.Compiler(compile_options)
# import
model_content = read_model_file(args.model)
import_options = nncase.ImportOptions()
compiler.import_tflite(model_content, import_options)
# ptq_options
ptq_options = nncase.PTQTensorOptions()
ptq_options.samples_count = 6
ptq_options.set_tensor_data(generate_data(input_shape, ptq_options.samples_count, args.dataset))
compiler.use_ptq(ptq_options)
# compile
compiler.compile()
# kmodel
kmodel = compiler.gencode_tobytes()
with open(os.path.join(dump_dir, 'test.kmodel'), 'wb') as f:
f.write(kmodel)
if __name__ == '__main__':
main()
Execute the following command to compile the specified TFLite model to kmodel, with target as k230.
Compile ONNX Model#
For ONNX models, it is recommended to first use ONNX Simplifier for simplification, and then use nncase to compile.
The example compilation script is as follows:
import os
import argparse
import numpy as np
from PIL import Image
import onnxsim
import onnx
import nncase
def parse_model_input_output(model_file):
onnx_model = onnx.load(model_file)
input_all = [node.name for node in onnx_model.graph.input]
input_initializer = [node.name for node in onnx_model.graph.initializer]
input_names = list(set(input_all) - set(input_initializer))
input_tensors = [
node for node in onnx_model.graph.input if node.name in input_names]
# input
inputs = []
for _, e in enumerate(input_tensors):
onnx_type = e.type.tensor_type
input_dict = {}
input_dict['name'] = e.name
input_dict['dtype'] = onnx.mapping.TENSOR_TYPE_TO_NP_TYPE[onnx_type.elem_type]
input_dict['shape'] = [(i.dim_value if i.dim_value != 0 else d) for i, d in zip(
onnx_type.shape.dim, [1, 3, 224, 224])]
inputs.append(input_dict)
return onnx_model, inputs
def onnx_simplify(model_file, dump_dir):
onnx_model, inputs = parse_model_input_output(model_file)
onnx_model = onnx.shape_inference.infer_shapes(onnx_model)
input_shapes = {}
for input in inputs:
input_shapes[input['name']] = input['shape']
onnx_model, check = onnxsim.simplify(onnx_model, input_shapes=input_shapes)
assert check, "Simplified ONNX model could not be validated"
model_file = os.path.join(dump_dir, 'simplified.onnx')
onnx.save_model(onnx_model, model_file)
return model_file
def read_model_file(model_file):
with open(model_file, 'rb') as f:
model_content = f.read()
return model_content
def generate_data_ramdom(shape, batch):
data = []
for i in range(batch):
data.append([np.random.randint(0, 256, shape).astype(np.uint8)])
return data
def generate_data(shape, batch, calib_dir):
img_paths = [os.path.join(calib_dir, p) for p in os.listdir(calib_dir)]
data = []
for i in range(batch):
assert i < len(img_paths), "calibration images not enough."
img_data = Image.open(img_paths[i]).convert('RGB')
img_data = img_data.resize((shape[3], shape[2]), Image.BILINEAR)
img_data = np.asarray(img_data, dtype=np.uint8)
img_data = np.transpose(img_data, (2, 0, 1))
data.append([img_data[np.newaxis, ...]])
return data
def main():
parser = argparse.ArgumentParser(prog="nncase")
parser.add_argument("--target", type=str, help='target to run')
parser.add_argument("--model", type=str, help='model file')
parser.add_argument("--dataset", type=str, help='calibration_dataset')
args = parser.parse_args()
input_shape = [1, 3, 320, 320]
dump_dir = 'tmp/yolov5s_onnx'
if not os.path.exists(dump_dir):
os.makedirs(dump_dir)
# onnx simplify
model_file = onnx_simplify(args.model, dump_dir)
# compile_options
compile_options = nncase.CompileOptions()
compile_options.target = args.target
compile_options.preprocess = True
compile_options.swapRB = False
compile_options.input_shape = input_shape
compile_options.input_type = 'uint8'
compile_options.input_range = [0, 255]
compile_options.mean = [0, 0, 0]
compile_options.std = [255, 255, 255]
compile_options.input_layout = 'NCHW'
compile_options.output_layout = 'NCHW'
compile_options.dump_ir = True
compile_options.dump_asm = True
compile_options.dump_dir = dump_dir
# compiler
compiler = nncase.Compiler(compile_options)
# import
model_content = read_model_file(model_file)
import_options = nncase.ImportOptions()
compiler.import_onnx(model_content, import_options)
# ptq_options
ptq_options = nncase.PTQTensorOptions()
ptq_options.samples_count = 6
ptq_options.set_tensor_data(generate_data(input_shape, ptq_options.samples_count, args.dataset))
compiler.use_ptq(ptq_options)
# compile
compiler.compile()
# kmodel
kmodel = compiler.gencode_tobytes()
with open(os.path.join(dump_dir, 'test.kmodel'), 'wb') as f:
f.write(kmodel)
if __name__ == '__main__':
main()
Execute the following command to compile the specified ONNX model to kmodel, with target as k230.
