Printing from inside module/src/initialization.cpp file
Hi, I am running codes with a opencl kernel on an arm architecture. When I run the program, it stops while calling kernel and gets timeout. I would like to know which function related to kernel is getting the error. So I want to have some printf statements inside the initialization file. I added some lines and recompile opencv but while running the program nothing is printed from initialization file. can anyone help me how I can make initialization file to print something?
Have you tried to print to
STDERR
?fprintf(stderr, ...);