https://github.com/benshope/pyopencl-tutorial
A Narrative of PyOpenCL Examples
https://github.com/benshope/pyopencl-tutorial
Last synced: 3 months ago
JSON representation
A Narrative of PyOpenCL Examples
- Host: GitHub
- URL: https://github.com/benshope/pyopencl-tutorial
- Owner: benshope
- Created: 2013-06-12T23:12:27.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2020-07-03T13:40:58.000Z (almost 5 years ago)
- Last Synced: 2025-04-13T02:53:47.103Z (3 months ago)
- Language: Python
- Homepage:
- Size: 5.84 MB
- Stars: 44
- Watchers: 6
- Forks: 14
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## PyOpenCL Inline Comments Tutorial (In Progress)
This tutorial is an introduction to parallel programming with Python and OpenCL. The lessons in the tutorial are numbered PyOpenCL scripts with inline comments.
### About The Tutorial
PyOpenCL is a tool that is worth learning. Python allows exceptional clarity-of-expression while OpenCL provides access to all the power modern hardware can deliver. Together they are a great combination.
# Completed Lessons
- 010 Introspection - Find out about your computer's OpenCL situation
- 020 Array Sum - Use OpenCL To Add Two Large Random Arrays - Hiding Details
- 021 Array Sum - Use OpenCL To Add Two Large Random Arrays - Showing Details