Any good resources on design patterns for parallel architectures?

前端 未结 2 1043
清酒与你
清酒与你 2021-01-24 22:54

A bit of background:

I am getting started with GPGPU (OpenCL), I am using a java wrapper (jogamp.jocl) hoping that it will provide me with a way to abstract the low lev

2条回答
  •  佛祖请我去吃肉
    2021-01-24 23:34

    i would say that similar patterns apply as for distributed computing for higher level abstractions. Not necessary the concurrency patters but all which help splitting tasks for parallel and independent execution. For example map/reduce. A CLCommandQueue would be used like a worker thread. Its basically just an interface to a abstract device (piece of hardware).

提交回复
热议问题