属性[GpuManaged]在运行时抛出异常

时间:2018-04-17 15:13:12

标签: c# aleagpu

我收到Found more than one basic block without predecessors例外:

enter image description here

尝试执行以下代码时:

    static void Main(string[] args)
    {
        var gpu = Gpu.Default;
        gpu.For(0, 100, idx => Do(idx)); // on this line

        Console.ReadKey();
    }

    [GpuManaged]
    public static void Do(int idx)
    {
        bool isTrue = false;
    }

可能是什么问题?不使用[GpuManaged]时不会抛出异常

  • win 10 x64
  • alea 3.0.4
  • alea.fody 3.0.4
  • fsharp.core 4.3.4
  • geforce GT 710

0 个答案:

没有答案