count_mac input size override resizes all inputs regardless of their shape
count_mac
accepts an optional argument to resize the input tensor width and height. However, this resize is applied to all input tensors, regardless of their shape.
For example, the adaptive LOP3 models have 2 inputs flags of size [1, 1] to enable/disable the adaptive operations.
When running:
./count_mac ../../../models/adaptive_lop3/nnr_D_BlowingBubbles_22_part0.sadl 72
The following error is obtained:
[INFO] Model loading
[INFO] Model initilization
[ERROR] init layer 67 onnx::Mul_336
[ERROR] issue during initialization
Perhaps, the resize of inputs in count_mac
should be applied only to inputs with 3 or more dimensions.