- Hands-On GPU:Accelerated Computer Vision with OpenCV and CUDA
- Bhaumik Vaidya
- 58字
- 2021-08-13 15:48:24
Scatter
In a scatter pattern, a thread or a task takes a single input and computes where in the memory it should write the output. Array sorting is an example of a scatter operation. It can also be one-to-many operations. The code for scatter pattern will look as follows:
out[i-1] += 2 * in[i] and out[i+1] += 3*in[i]
推薦閱讀
- Functional Python Programming
- C語言程序設(shè)計(第2 版)
- Responsive Web Design with HTML5 and CSS3
- Java 9 Programming Blueprints
- 跟小海龜學(xué)Python
- ASP.NET開發(fā)與應(yīng)用教程
- C語言程序設(shè)計
- Practical Game Design with Unity and Playmaker
- 軟件項目管理實用教程
- Kubernetes進(jìn)階實戰(zhàn)
- Python Machine Learning Blueprints:Intuitive data projects you can relate to
- Mastering Unreal Engine 4.X
- Python Automation Cookbook
- INSTANT LESS CSS Preprocessor How-to
- Flask開發(fā)Web搜索引擎入門與實戰(zhàn)