使用VS 2012,.NET 4.5,64位和CUDAfy 1.12,我有概念以下证明
using System;
using System.Runtime.InteropServices;
using Cudafy;
using Cudafy.Host;
using Cudafy.Translator;
namespace Test
{
[Cudafy(eCudafyType.Struct)]
[StructLayout(LayoutKind.Sequential)]
public struct ChildStruct
{
[MarshalAs(UnmanagedType.LPArray)]
public float[] FArray;
public long FArrayLength;
}
[Cudafy(eCudafyType.Struct)]
[StructLayout(LayoutKind.Sequential)]
public struct ParentStruct
{
public ChildStruct Child;
}
public class Program
{
[Cudafy]
public static void KernelFunction(GThread gThread, ParentStruct parent)
{
long length = parent.Child.FArrayLength;
}
public static void Main(string[] args)
{
var module = CudafyTranslator.Cudafy(
ePlatform.x64, eArchitecture.sm_35,
new[] {typeof(ChildStruct), typeof(ParentStruct), typeof(Program)});
var dev = CudafyHost.GetDevice();
dev.LoadModule(module);
float[] hostFloat = new float[10];
for (int i = 0; i < hostFloat.Length; i++) { hostFloat[i] = i; }
ParentStruct parent = new ParentStruct
{
Child = new ChildStruct
{
FArray = dev.Allocate(hostFloat),
FArrayLength = hostFloat.Length
}
};
dev.Launch(1, 1, KernelFunction, parent);
Console.ReadLine();
}
}
}
当程序运行时,我得到的dev.Launch以下错误:
Type 'Test.ParentStruct' cannot be marshaled as an unmanaged structure; no meaningful size or offset can be computed.
如果我从ChildStruct删除float数组,它按预期工作。
在C / C ++ / CLI和CUDA C,在过去工作过,我知道错误的性质。 这个错误的一些解决方案建议设置使用手动的结构尺寸Size
的参数MarshalAs
,但这是不可能的,由于该品种的结构内的类型。
我看着所产生的.CU文件,并将其在产生所述浮子阵列作为float *
这是我的预期。
有没有办法通过一个结构内核中的一个数组? 而如果没有什么是最好的第二选择? 此问题不会在CUDA C存在,因为我们是从CLR编组它只存在。