This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TIDL Argmax Layer Question

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