ANE not support flexible input shape

I have tried both ImageType and TensorType as my input, Flexible input shape can NOT use ANE even with MLComputeUnitsAll, use GPU instead when default shape set, use CPU ONLY without default shape
can you post an example?
Code Block python
image_input = ct.TensorType(name="input", shape=(1, 3, ct.RangeDim(default=720), ct.RangeDim(default=720)))
mlmodel = ct.convert(trace, inputs=[image_input], source='pytorch', convert_to='nn_proto')

GPU support, ANE not working

Code Block python
image_input = ct.TensorType(name="input", shape=(1, 3, ct.RangeDim(), ct.RangeDim()))
mlmodel = ct.convert(trace, inputs=[image_input], source='pytorch', convert_to='nn_proto')

CPU ONLY

How to make ANE working with flexible input shape?
ANE not support flexible input shape
 
 
Q