Skip to content
/ GPGPU Public

CUDA C parallel implementations of some well-known algorithms.

License

Notifications You must be signed in to change notification settings

t0re199/GPGPU

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

README

This repository contains CUDA C parallel implementations of some well-known algorithms.

Matrix Addition

Basic Kernel, Grid Stride Loop, CUDA Unified Memory.

Matrix Multiplication

Basic Kernel, Grid Stride Loop, Tiling, CUDA Unified Memory.

Convolution 2D

Basic Kernel, Tiling, CUDA Unified Memory.