gpt4 book ai didi

c# - 抛出异常 : 'System.Exception' in Alea. dll“i32 不是结构类型

转载 作者:太空宇宙 更新时间:2023-11-03 22:58:18 26 4
gpt4 key购买 nike

我正在尝试使用 Alea GPU 库中的 Gpu.Default.For,但我一直收到异常:

i32 is not a struct type error.

这个错误是什么意思,为什么我用这个简单的 Gpu.Default.For 循环得到它?

for (Int32 j = 0; j <= TimePeriodArray.Length - 1; j++)
//Gpu.Default.For(0, TimePeriodArray.Length - 1, j =>
{
Int32 days = TimePeriodArray[j];
Double[] CalcResult = new Double[CloseArray.Length];

for (Int32 Index = days; Index <= CloseArray.Length - 1; Index++)
{
Gpu.Default.For(Index - 1, Index - days, i =>
{
CalcResult[Index] = CalcResult[Index] + CloseArray[i];
});

CalcResult[Index] = CalcResult[Index] / days;
}

CalcResultsList.Add(CalcResult);
//});
}

最佳答案

两件事:首先,您在 GPU 代码中新建了一个数组,这是不受支持的。其次,我猜 CalcResultsListList 类型,同样不受支持。原因是,在 GPU 代码中分配新内存效率不高。 GPU 代码会被很多线程执行,不推荐在 GPU 代码内部分配。

关于c# - 抛出异常 : 'System.Exception' in Alea. dll“i32 不是结构类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44330186/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com