Fix import tests
Context
This MR is dedicated to enhance some operators imports mentioned in issue aidge_onnx#46 (moved).
The operators that will be enhanced are the following:
-
gemm: * missingalphaandbetaattributes.
* missingtransAandtransBattributes.
* cannot support bias of shape [1, outChannels]. -
Sum: can no longer useAddoperator because the latter can no longer support more than 2 inputs.
Modified files
-
MetaOperatorDefs.hpp,Gemm.cppandpybind_MetaOperatorDefs.cpp, addGemmmetaoperator -
FC.cppsupport bias of shape [1, outChannels]; -
Sum.hpp,Sum.cppandpybind_Sum.cpp, addSumoperator;
TODO
-
Add Gemmmetaoperator with the attributesalpha,beta,transAandtransB -
Support bias of shape [1, outChannels] in FCoprator -
Add Sumoperator
Edited by Houssem ROUIS