本文整理汇总了C#中GASS.CUDA.FFT.Types.cufftHandle类的典型用法代码示例。如果您正苦于以下问题:C# cufftHandle类的具体用法?C# cufftHandle怎么用?C# cufftHandle使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
cufftHandle类属于GASS.CUDA.FFT.Types命名空间,在下文中一共展示了cufftHandle类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: cufftSetStream
public CUFFTResult cufftSetStream(cufftHandle plan, cudaStream stream)
{
return cufftSetStream_ext(plan, stream);
}
示例2: Plan1D
public cufftHandle Plan1D(int nx, CUFFTType type, int batch)
{
this.plan = new cufftHandle();
this.LastError = _driver.cufftPlan1d(ref this.plan, nx, type, batch);
return this.plan;
}
示例3: Destroy
public void Destroy(cufftHandle plan)
{
this.LastError = _driver.cufftDestroy(plan);
}
示例4: cufftSetStream
public static extern CUFFTResult cufftSetStream(cufftHandle p, cudaStream stream);
示例5: ExecuteComplexToReal
public void ExecuteComplexToReal(cufftHandle plan, CUdeviceptr input, CUdeviceptr output)
{
this.LastError = _driver.cufftExecC2R(plan, input, output);
}
示例6: cufftExecZ2Z
public static extern CUFFTResult cufftExecZ2Z(cufftHandle plan, CUdeviceptr idata, CUdeviceptr odata, CUFFTDirection direction);
示例7: cufftPlan3d
public static extern CUFFTResult cufftPlan3d(ref cufftHandle plan, int nx, int ny, int nz, CUFFTType type);
示例8: cufftPlanMany_ext
private static extern CUFFTResult cufftPlanMany_ext(ref cufftHandle plan, int rank, IntPtr n, IntPtr inembed, int istride, int idist, IntPtr onembed, int ostride, int odist, CUFFTType type, int batch);
示例9: cufftSetStream_ext
private static extern CUFFTResult cufftSetStream_ext(cufftHandle p, cudaStream stream);
示例10: cufftPlan1d_ext
private static extern CUFFTResult cufftPlan1d_ext(ref cufftHandle plan, int nx, CUFFTType type, int batch);
示例11: cufftPlan3d_ext
private static extern CUFFTResult cufftPlan3d_ext(ref cufftHandle plan, int nx, int ny, int nz, CUFFTType type);
示例12: cufftExecZ2Z_ext
private static extern CUFFTResult cufftExecZ2Z_ext(cufftHandle plan, CUdeviceptr idata, CUdeviceptr odata, CUFFTDirection direction);
示例13: cufftExecZ2D_ext
private static extern CUFFTResult cufftExecZ2D_ext(cufftHandle plan, CUdeviceptr idata, CUdeviceptr odata);
示例14: cufftSetCompatibilityMode
public CUFFTResult cufftSetCompatibilityMode(cufftHandle plan, CUFFTCompatibility mode)
{
return cufftSetCompatibilityMode_ext(plan, mode);
}
示例15: cufftDestroy
public static extern CUFFTResult cufftDestroy(cufftHandle plan);