Any good resources on design patterns for parallel architectures?

前端 未结 2 1039
清酒与你
清酒与你 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).

    0 讨论(0)
  • 2021-01-24 23:57

    Architectural Patterns for Parallel Programming

    Ralph Johnson on Parallel Programming Patterns

    0 讨论(0)
提交回复
热议问题