TexasInstruments / edgeai-tidl-tools

Edgeai TIDL Tools and Examples - This repository contains Tools and example developed for Deep learning runtime (DLRT) offering provided by TI’s edge AI solutions.
Other
121 stars 27 forks source link

MatMul is not suported now #34

Open VictorGump opened 1 year ago

VictorGump commented 1 year ago

ONNX operator MatMul is not suported now.. By passing

why matmul is not suported ?

VictorGump commented 1 year ago

I'm using TIDL tidl_j721e_08_02_00_11

sourabh-patil commented 8 months ago

I suppose you are talking about Linear layer being termed as MatMul in onnx. To get TIDL acceleration support, you need to convert that MatMul operation to Gemm. For that your Linear should has bias as False. In your case it seems that Linear layer has bias True that is the reason it is showing MatMul and not Gemm.