如题,运行hb_mapper checker,有如下错误提示,
ERROR HorizonRT not support these cpu operators: MatMul
我使用的是pytorch的torch.onnx.export导出模型,opset_version=10,看了你们的算子支持文档,Matmul是支持的,不过要求opset version=13, 9, 1,但是如果真的使用opset version=9导出onnx,又会有如下提示,
ERROR The opset version of the onnx model is 9, only model with opset version 10 is supported.
那这不是一个死结吗……Matmul应该是很基础的操作吧,卷积层什么的都会用到,没理由不支持,更没理由低版本支持,高版本不支持呀。所以这个要怎么处理?

