Skip to content

Remove import warnings

Maxence Naud requested to merge fix_import_warnings into dev

This merge request solves several issues:

  • Unwanted warning messages when importing an onnx file due to Producer automatically created and then replaced for Conv, ConvDepthWise and FC Operators
  • Bad imports of Conv, ConvDepthWise and FC Operators when number of inChannels, outChannels and nbChannels is not known
  • add Tensor operators +,-,/,*
  • add Tensor repr function
  • fix Identity_Op dimension propagation and check
  • fix Identity_Op Base class declaration in binding
  • Remove inChannels, outChannels and nbChannels attributes from Conv_Op, ConvDepthWise_Op and FC_Op since they were only used for Weight/Bias producer creation. Parameter kept in creation function
  • Move PaddedAvgPooling, LSTM MetaOp definition to src files

Merge request reports