我在向GPU分配包含多个数组的结构时遇到了一些问题。在第二个代码块中我得到一个错误:
SimpleDataStructure[] dev_SDS = _gpu.CopyToDevice(SDS);
有谁知道为什么?从我可以看到CopyToDevice()不支持结构作为参数。我可能会遗漏一些东西,所以在任何情况下都会感激一些帮助。
结构声明:
[Cudafy]
public struct SimpleDataStructure
{
public float[] AreaCode;
public float[] Number;
public SimpleDataStructure(int x)
{
AreaCode = new float[x];
Number = new float[x];
}
}
我班上的方法中的代码:
Public class TaskManager
{
private static GPGPU _gpu;
private SimpleDataStructure SDS;
public void PreparationForTasks()
{
DataRetrieval();
SDS = new SimpleDataStructure(_entity.Data.Count - 1);
CudafyModule km = CudafyTranslator.Cudafy();
_gpu = CudafyHost.GetDevice(eGPUType.Cuda);
_gpu.LoadModule(km);
//Loaded SimpleDataStructure into same module.
km = CudafyTranslator.Cudafy(typeof(SimpleDataStructure));
_gpu.LoadModule(km, false);
//Getting error on following line.
SimpleDataStructure[] dev_SDS = _gpu.CopyToDevice(SDS);
dim3 grid = new dim3(10, 10, 1);
dim3 block = new dim3(8, 8, 1);
_gpu.Launch(grid, block, "WorkerKernelOnGPU", dev_SDS);
SimpleDataStructure result_SDS = new SimpleDataStructure(100);
_gpu.CopyFromDevice(dev_SDS, result_SDS);
}
//.....
}
答案 0 :(得分:5)
您不能将数组引用作为结构的成员,cudafy不支持。您可以通过自己将数组复制到设备并将设备地址作为IntPtrs存储在结构中来解决此问题。或者,如果要修复数组的大小,您可以使结构不安全并在结构中使用固定大小的数组。