I try to get data buffer from output layer with output size: 27x32
When i read dims from:
getDimsCHWFromDims(dims, outputLayersInfo[l].inferDims);
printf(“C:%d H:%d W:%d”,dims.c, dims.h, dims.w );
print out:
C=27 H=32 W=0
How can i print that matrix?
thanks