Available parallel technologies in .Net

前端 未结 6 1373
星月不相逢
星月不相逢 2021-02-04 10:58

I am new to .Net platform. I did a search and found that there are several ways to do parallel computing in .Net:

  1. Parallel task in Task Parallel Library, which

6条回答
  •  甜味超标
    2021-02-04 11:48

    There are also some .NET libraries for data parallel programming which target the Graphics Processing Unit (GPU) including:

    Microsoft Accelerator is for data parallel programming and can target either the GPU or multi-core processors.

    Brama is for LINQ style data transformations that run on the GPU.

    CUDA.NET provides a wrapper to allow to CUDA to be used from .NET programs.

提交回复
热议问题