Skip to content

Menoh v1.1.0

Compare
Choose a tag to compare
@okdshin okdshin released this 12 Oct 10:14
· 185 commits to master since this release
d395001

Overview

  • Fix preprocess of VGG16 example
  • Delete menoh_onnx_viewer
  • 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
  • Replaced API

    • Add menoh_variable_profile_table_builder_add_input_profile
      • Deprecate menoh_variable_profile_table_builder_add_input_profile_dims2 and menoh_variable_profile_table_builder_add_input_profile_dims4
    • Add menoh_variable_profile_table_builder_add_output_name
      • Deprecate menoh_variable_profile_table_builder_add_output_profile
  • Exception specification

    • menoh_build_variable_profile_table can return input_not_found_error, output_not_found_error and variable_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