Likely cause: Reference counting issue in base test Fix: Check vxReleaseReference implementation
Error: vxLoadKernels not working Fix: Implement vxLoadKernels to load kernel modules
Error: vxUnloadKernels not working Fix: Implement vxUnloadKernels
Error: Parameter by reference setting Fix: Complete vxSetParameterByReference
Debug shows: vxQueryKernel VX_KERNEL_PARAMETERS not implemented Fix: Add VX_KERNEL_PARAMETERS case to vxQueryKernel
VX_KERNEL_PARAMETERS => {
if size >= 4 {
let num = kernel_data.num_params as i32;
*(ptr as *mut i32) = num;
return VX_SUCCESS;
}
}Stub implementations returning VX_SUCCESS
Complete the implementation
Get to 14/14 SmokeTest passing (Group 1 complete)