Code Monkey home page Code Monkey logo

Comments (4)

kunzmi avatar kunzmi commented on July 24, 2024

Hi,

I'm not sure how to understand your question. Do you have general problems in extending a 1D FFT to 2D or is it the 2D representation of your data in memory? Or do you have troubles setting up the CUFFT-plan for 2D transforms? Or something completely different?

Michael

from managedcuda.

SmokhCR avatar SmokhCR commented on July 24, 2024

Dear Michael,

I have found the only class compatible with 2D C# arrays cuFloatComplex[,].
public CudaPitchedDeviceVariable<cuFloatComplex> d_signal;

In my example I have 2D C# matrix 4x4

.....
       cuFloatComplex[,] h_signal = new cuFloatComplex[4,4];
.....
       plan = new CudaFFTPlan2D(4, 4, cufftType.C2C);
       d_signal.CopyToDevice(h_signal);
       plan.Exec(d_signal.DevicePointer,  TransformDirection.Forward); 
       d_out_signal.CopyToHost(h_signal);

unfortunately, after Forward transform, I don't see real transformed data. Resulting array is just mixture of random or zero
values. I'm pretty sure I'm missing some important instructions of just using wrong classes.
Please help me to start.

Sincerely,

from managedcuda.

kunzmi avatar kunzmi commented on July 24, 2024

Hi
The problem is that you mix pitched and continuous memory. CudaPitchedDeviceVariable adds a few bytes at each line to ensure that all lines start at a “good” memory address – that's for example necessary for binding memory to texture units etc.

CudaFFTPlan2D on the other hand cannot deal with pitched memory allocations, that is why your results are wrong.

Either change CudaPitchedDeviceVariable to CudaDeviceVariable to get continuous memory allocations that fit to CudaFFTPlan2D or use CudaFFTPlanMany which allows to set the pitch parameters:

//note that cufft has "inverted" width/height order:
int[] size = new int[2] { data.Height, data.Width };
int[] inEmbed = new int[2] { data.Height, data.Pitch / (int)cuFloatComplex.SizeOf };
int[] onEmbed = new int[2] { data.Height, data.Pitch / (int)cuFloatComplex.SizeOf };

//create a cufft plan:
CudaFFTPlanMany fftPlan = new CudaFFTPlanMany(2, size, 1, cufftType.C2C, inEmbed, 1, 1, onEmbed, 1, 1);

from managedcuda.

SmokhCR avatar SmokhCR commented on July 24, 2024

Hi Michael,
thank you very much! It makes great sense. Simple CudaDeviceVariable works fine with 2D C# arrays and CudaFFTPlan2D.
Could you please, tell a bit more about Pitched size. What it can be?
E.g. we have 256x256 matrix, what Pitch value would be or recommended?

Thanks in advance,

from managedcuda.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.