Git Product home page Git Product logo

learning-cuda's Introduction

learning-cuda

Learning CUDA programming

This repository contains my solutions to exercises of the course Parallel Programming (first semester, 2020 - 2021) at VNU-HCM, University of Science, lectured by Mr. Trung-Kien Tran.

Exercise 1: CUDA Basics

Part 1: Convert RGB image to gray-scale image

Part 2: Blur image by convolution with Gaussian filter

Exercise 2: How code is executed in CUDA

Part 1: Array (sum) reduction

Part 2: Calculate sum of two arrays using streams

Exercise 3: Types of memory in CUDA

Task: The same as Part 2 of Exercise 1

kernel 1: using only GMEM

kernel 2: copy the image from GMEM to SMEM, filter is still on GMEM

kernel 3: copy the image from GMEM to SMEM and the filter from GMEM to CMEM

Exercise 4: Parallelizing Radix Sort

Task: Paralellize Radix Sort using CUDA

Parallelized Bits Extraction: simply divide the arrays into blocks and attract bits on those

Parallelized Scanning (Prefix Sum) on Bits: load the extracted bits into SMEM then do scanning

Parallelized Ranking and Result writing: load the scanned array into SMEM then compute rank and write result

[More details will be updated soon...]

learning-cuda's People

Contributors

briverse17 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.