Hi,
I have a model wtih argmax layer. And the output dimension of the argmax layer is 1x7x10x10.
When I run the model on DSP and EVE mode, I get two difference results.
On the DSP mode, the max output is 5.
On the EVE mode, the max output is 6.
And on the TIDL, tidl_argmax.h, I found the definition of the max channels.
#ifdef CORE_EVE
#define ARGMAX_MAX_NUM_CHANNELS (15)
#elif CORE_DSP
#define ARGMAX_MAX_NUM_CHANNELS (6)
#endif
So, how can I resolve the question ?
Thanks and Regards,
Ahan