Is it possible to accelerate (dynamic) LINQ queries using GPU?

后端 未结 5 827
青春惊慌失措
青春惊慌失措 2021-02-07 13:35

I have been searching for some days for solid information on the possibility to accelerate LINQ queries using a GPU.

Technologies I have \"investigated\" so far:

5条回答
  •  北荒
    北荒 (楼主)
    2021-02-07 14:30

    GpuLinq

    GpuLinq's main mission is to democratize GPGPU programming through LINQ. The main idea is that we represent the query as an Expression tree and after various transformations-optimizations we compile it into fast OpenCL kernel code. In addition we provide a very easy to work API without the need of messing with the details of the OpenCL API.

    https://github.com/nessos/GpuLinq

提交回复
热议问题