Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
tsoc
openmm
Commits
309f7778
Commit
309f7778
authored
Apr 16, 2015
by
peastman
Browse files
Fixed a bug in OpenCL FFT
parent
afae4bc8
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
platforms/opencl/src/kernels/fft.cl
platforms/opencl/src/kernels/fft.cl
+1
-1
No files found.
platforms/opencl/src/kernels/fft.cl
View file @
309f7778
...
@@ -51,10 +51,10 @@ __kernel void execFFT(__global const INPUT_TYPE* restrict in, __global OUTPUT_TY
...
@@ -51,10 +51,10 @@ __kernel void execFFT(__global const INPUT_TYPE* restrict in, __global OUTPUT_TY
data0[get_local_id
(
0
)
]
=
in[x*
(
YSIZE*ZSIZE
)
+y*ZSIZE+get_local_id
(
0
)
%ZSIZE]
;
data0[get_local_id
(
0
)
]
=
in[x*
(
YSIZE*ZSIZE
)
+y*ZSIZE+get_local_id
(
0
)
%ZSIZE]
;
#
endif
#
endif
#
endif
#
endif
barrier
(
CLK_LOCAL_MEM_FENCE
)
;
#
if
OUTPUT_IS_PACKED
#
if
OUTPUT_IS_PACKED
}
}
#
endif
#
endif
barrier
(
CLK_LOCAL_MEM_FENCE
)
;
COMPUTE_FFT
COMPUTE_FFT
}
}
}
}
Write
Preview
Markdown
is supported
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