Menoh v1.1.0
Overview
- Fix preprocess of VGG16 example
- Delete
menoh_onnx_viewer
- Please use Netron instead
- Use protobuf-3.6.1 when linking static protobuf library
- Remove random operation when constructing computation graph
- Add Python depenedency to build
libonnx
(Python is needed only building time, not runtime)
API change
-
Load ONNX model on memory
- Add
make_model_data_from_onnx_data_on_memory
- Add
-
Replaced API
- Add
menoh_variable_profile_table_builder_add_input_profile
- Deprecate
menoh_variable_profile_table_builder_add_input_profile_dims2
andmenoh_variable_profile_table_builder_add_input_profile_dims4
- Deprecate
- Add
menoh_variable_profile_table_builder_add_output_name
- Deprecate
menoh_variable_profile_table_builder_add_output_profile
- Deprecate
- Add
-
Exception specification
menoh_build_variable_profile_table
can returninput_not_found_error
,output_not_found_error
andvariable_not_found_error
- Invalid input name (no nodes have it as input) causes
input_not_found_error
- Invalid output name (no nodes have it as output) causes
output_not_found_error
- When needed variable doesn't exist, it returns
variable_not_found_error
- Invalid input name (no nodes have it as input) causes