OpenCL* for CPU
Ask questions and share information on Intel® SDK for OpenCL™ Applications and OpenCL™ implementations for Intel® CPU.
Announcements
This forum covers OpenCL* for CPU only. OpenCL* for GPU questions can be asked in the GPU Compute Software forum. Intel® FPGA SDK for OpenCL™ questions can be ask in the FPGA Intel® High Level Design forum.

printf support in SDK

Polar01
Beginner
749 Views
Hi,
I try to use the printf with the lats version of the SDK... but nothing is printed in my output !
I use the following code :
#pragma OPENCL EXTENSION cl_intel_printf : enable
printf("%d ", i);
I work under Visual Studio 2008 with Win7 64 bits.
I have also try to open my console with :
AllocConsole();
HWND hConsole = (HWND)GetStdHandle(0xfffffff5);
ShowWindow(hConsole, SW_SHOWMINNOACTIVE);
AllocConsole(); HWND hConsole = (HWND)GetStdHandle(0xfffffff5); ShowWindow(hConsole, SW_SHOWMINNOACTIVE);
But no success... nothing is printed !
Do you have an idea ?
Thanks
0 Kudos
3 Replies
Eli_Bendersky__Intel
749 Views
Hello,
Could you please attach the complete .cl file (or string) you're using that demonstrates this problem for you?

0 Kudos
Polar01
Beginner
749 Views
Hi,
There is too much code (+ 4000 lines)!!!!
This code works on AMD SDK. It is just a QT application running in VS !
Even when I run it from command line... (DOS cmd) I have no message in my console !
I don't know what to do to print with Intel SDK !
0 Kudos
Eli_Bendersky__Intel
749 Views
Hello,

  1. Which version of the Intel OpenCL SDK are you using?
  2. Can you try to write a simple & small kernel and use printf in it, running it in the same environment that you run your large kernel? Do you see output from the printf call in the small kernel?

0 Kudos
Reply