Tool/software:
I'm working on implementing a custom operator that takes two inputs, where I'm using the Maxpool custom operator example as a reference which is located at:
/ti-processor-sdk-rtos-j784s4-evm-10_01_00_04/c7x-mma-tidl/ti_dl/custom/
I'm encountering an issue within the function:
TIDL_custom[MyCustomOp]_ixX_oxX_exec(void *kernelHandle, const TIDL_bufParams3D_t *srcAddr, const TIDL_bufParams3D_t *dstAddr, const void *srcPtr[], void *dstPtr)
It seems this issue might originate from the call to:
Could this be a bug, or is it possibly due to the current implementation only supporting TIDL_DataFlowTypeOneTensorInProcOneChannel
? If so, what would be the correct way to handle multiple inputs in this case?