Skip to content
Snippets Groups Projects
Commit 0a472cec authored by Jean-Baptiste Keck's avatar Jean-Baptiste Keck
Browse files

minor documentation change

parent abc8f276
No related branches found
No related tags found
1 merge request!3Resolve "Sine and cosine transforms to solve homogeneous Neumann and Dirichlet problems"
......@@ -995,7 +995,7 @@ class GpyFFT(FFTI):
- single and double precision supported
- no intermediate temporary buffers created at each call.
- all required temporary buffers can be supplied or are auto-allocated only once.
- planning capability but no caching capabilities
- real planning capability (but no caching capabilities)
- injection of custom opencl code for pre and post processing.
Planning may destroy initial arrays content.
......@@ -1010,7 +1010,7 @@ class GpyFFT(FFTI):
out.data = out.base_data + out.offset
if (offset%alignment > 0)
out.base_data[0:out.size]
will be trashed during computation and the result of the transform will go to
may be trashed during computation and the result of the transform will go to
out.base_data[out.offset:out.offset+out.size]
Thus for every transforms out.base_data[0:min(out.offset,out.size)] may be overwritten with trash data.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment