Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
einsteinathome
libclfft
Commits
cc87961b
Commit
cc87961b
authored
Mar 21, 2011
by
Oliver Bock
Browse files
Use MinGW/Windows-compatible formats
parent
31cb1fc5
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/fft_setup.cpp
View file @
cc87961b
...
@@ -395,7 +395,7 @@ void clFFT_DumpPlan( clFFT_Plan Plan, FILE *file)
...
@@ -395,7 +395,7 @@ void clFFT_DumpPlan( clFFT_Plan Plan, FILE *file)
{
{
cl_int
s
=
1
;
cl_int
s
=
1
;
getKernelWorkDimensions
(
plan
,
kInfo
,
&
s
,
&
gDim
,
&
lDim
);
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
;
kInfo
=
kInfo
->
next
;
}
}
fprintf
(
out
,
"%s
\n
"
,
plan
->
kernel_string
->
c_str
());
fprintf
(
out
,
"%s
\n
"
,
plan
->
kernel_string
->
c_str
());
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment