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
2bb2ad3d
Commit
2bb2ad3d
authored
Mar 17, 2011
by
Oliver Bock
Browse files
Avoid compiler warnings
parent
de24b3f4
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/fft_execute.cpp
View file @
2bb2ad3d
...
...
@@ -133,7 +133,7 @@ clFFT_ExecuteInterleaved( cl_command_queue queue, clFFT_Plan Plan, cl_int batchS
cl_int
err
;
size_t
gWorkItems
,
lWorkItems
;
int
inPlaceDone
;
int
inPlaceDone
=
-
1
;
cl_int
isInPlace
=
data_in
==
data_out
?
1
:
0
;
...
...
@@ -231,7 +231,7 @@ clFFT_ExecutePlannar( cl_command_queue queue, clFFT_Plan Plan, cl_int batchSize,
cl_int
err
;
size_t
gWorkItems
,
lWorkItems
;
int
inPlaceDone
;
int
inPlaceDone
=
-
1
;
cl_int
isInPlace
=
((
data_in_real
==
data_out_real
)
&&
(
data_in_imag
==
data_out_imag
))
?
1
:
0
;
...
...
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