cancel
Showing results for 
Search instead for 
Did you mean: 

Archives Discussions

cymick
Journeyman III

clBuildProgram error with large kernel

I'm working on a program with a rather large kernel, about 400 lines of code, and when I try to compile it from source it doesn't always compile. To give some more technical background I'm working on Windows 7, on a ATI HD 5870, and I'm building my program using VS Express 10. Running from a binary works just fine if I can get it to compile correctly the first time but after making any changes to the kernel it can take one to several tries to get it to build the binary. The errors I get when it doesn't compile vary as well. About half the time I get a -11 build error with no build log. Alternatively I will get a memory allocation error "Unhandled exception at ...." Any insights into this would be greatly appreciated.

0 Likes
8 Replies
binying
Challenger

How about trying the tool called Kernel Analyzer?

0 Likes

The Kernel Analyzer more or less gives the same results. It either compiles fine, won't compile and gives no build information or crashes the kernel analyzer.

0 Likes
cymick
Journeyman III

I've been trying to narrow down the problem with the KernelAnalyzer2 program and here is what I've found. My program is propagating some system through time and using a fourth order Runge-Kutta algorithm as part of the kernel. As such it has to call upon some equations multiple times to calculate velocities and whatnot, those equations here are D_Theta and D_Phi. When it calls them only the first time everything works out fine and it compiles (in the sample code below I have the other three calls commented out, this version compiles). When I try to have it call them the second, third and fourth times it won't compile the kernel and it gives no error.

void RK4(Parameters mp, float* DT, float j, float* theta,  float* phi, float* time)

{

float th = *theta;

float ph = *phi;

float t = *time;

float dt = *DT;

float k11, k12, k21, k22, k31, k32, k41, k42;

k11 = k12 = k21 = k22 = k31 = k32 = k41 = k42 = 0;

 

float dtheta = 0;

float dphi = 0;

 

float tth = th;

float tph = ph;

 

k11 = D_Theta(mp, j, tth, tph);

k12 = D_Phi(mp, j, tth, tph);

tth = th + k11 * dt / 2;

tph = ph + k12 * dt / 2;

//k21 = D_Theta(mp, j, tth, tph);

//k22 = D_Phi(mp, j, tth, tph);

tth = th + k21 * dt / 2;

tph = ph + k22 * dt / 2;

//k31 = D_Theta(mp, j, tth, tph);

//k32 = D_Phi(mp, j, tth, tph);

tth = th + k31 * dt;

tph = ph + k32 * dt;

//k41 = D_Theta(mp, j, tth, tph);

//k42 = D_Phi(mp, j, tth, tph);

dtheta = (k11 + 2 * k21 + 2 * k31 + k41) * dt / 6;

dphi = (k12 + 2 * k22 + 2 * k32 + k42) * dt / 6;

th += dtheta;

ph += dphi;

*theta = th;

*phi = ph;

*time = t;

}

0 Likes

Hi, Is there some private array allocated in the D_Theta or D_Phi?

such as

D_Theta()

{

    int a[4];

    do something;

    return ;

}

0 Likes

No both D_Theta and D_Phi are structured like

D_Theta()

{

     float d_theta = 0;

     do something

     return d_theta;

}

the "do something" does contain several if statements but otherwise it's just simple multiplications, divides, and trig functions.

0 Likes

Is it possible for you to upload the code so that we can reproduce the issue?

Otherwise, when it compiles, can it run on that GPU?

0 Likes

Here is the code. There is a lot to it but the clearest change that controls whether the kernel will compile or not are the four commented lines in the RK4 function as discussed earlier. When it does compile it runs just fine although to make it functional with those four lines active I have to eliminate other portions of the program. In essence all the parts of the program work just fine but when I try to put too many of them together it doesn't compile.

Oh also I'm building with build options -cl-single-precision-constant and -cl-no-signed-zeros (not sure if either of these are really needed) and I'm building on a Cypress card.

0 Likes

hmm, it seems to be a hardware issue. It can be successfully compiled  on NV card, but get crash on ATI one here.

0 Likes