When I export a yolov5s.pt by export.py and compile the yolov5s.onnx by TIDL onnxrt_ep.py with yolov5s.prototxt, a Segmentation fault will raise. Show as below.

However, the onnx is not exported by export.py, for example, downloaded from yolov5s6_640_ti_lite_37p4_56p0.onnx, then the TIDL will compile it well, WHY??
As the Debug flow, this bug is report from ↓ in onnxrt_ep.py in edgeai-tidl-toolsexamples/osrt_python/ort
```
EP_list = ['TIDLExecutionProvider','CPUExecutionProvider']
sess = rt.InferenceSession(config['model_path'] ,providers=EP_list, provider_options=[delegate_options, {}], sess_options=so)
```
Appendix: yolov5s6 NN model onnx file with protobuf file.




