Part Number: PROCESSOR-SDK-J784S4
Tool/software:
Hi,
In the ..\ti-processor-sdk-rtos-j784s4-evm-10_00_00_05\vxlib_10_00_00_02\test\VXLIB_convolve\test_data, there are cases for convolution test.
Is the reference output correct? How is it calculated?
#ifdef WIN32
uint8_t staticRefInCase1[] =
#else
__attribute__((section (".staticData")))
static uint8_t staticRefInCase1[] =
#endif
{
138, 142, 53, 184, 100, 166,
121, 163, 136, 201, 220, 110,
165, 24, 95, 180, 137, 221,
37, 134, 74, 36, 82, 126,
5, 41, 105, 228, 245, 127,
148, 29, 157, 230, 145, 60,
};
#ifdef WIN32
int16_t staticRefFilterCase1[] =
#else
__attribute__((section (".staticData")))
static int16_t staticRefFilterCase1[] =
#endif
{
-1, 0, 2,
2, 2, -1,
2, 1, -1,
};
#ifdef WIN32
uint8_t staticRefOutCase1[] =
#else
__attribute__((section (".staticData")))
static uint8_t staticRefOutCase1[] =
#endif
{
51, 41, 68, 52,
24, 70, 69, 45,
20, 23, 30, 69,
41, 29, 71, 75,
};