Skip to content
Snippets Groups Projects
Commit cc87961b authored by Oliver Bock's avatar Oliver Bock
Browse files

Use MinGW/Windows-compatible formats

parent 31cb1fc5
No related branches found
No related tags found
No related merge requests found
......@@ -395,7 +395,7 @@ void clFFT_DumpPlan( clFFT_Plan Plan, FILE *file)
{
cl_int s = 1;
getKernelWorkDimensions(plan, kInfo, &s, &gDim, &lDim);
fprintf(out, "Run kernel %s with global dim = {%zd*BatchSize}, local dim={%zd}\n", kInfo->kernel_name, gDim, lDim);
fprintf(out, "Run kernel %s with global dim = {%lu*BatchSize}, local dim={%lu}\n", kInfo->kernel_name, (unsigned long)gDim, (unsigned long)lDim);
kInfo = kInfo->next;
}
fprintf(out, "%s\n", plan->kernel_string->c_str());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment