Skip to content

LANL PCSRI GPU Exercise - C implementation of Gaussian Blurring of .ppm format image

License

Notifications You must be signed in to change notification settings

Knoxort/Parallel-Gaussian-Blurring

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Parallel Gaussian Blurring

A C program that takes a .ppm image and applies a gaussian blur.

To compile:

make compile

To clean up object files and executables:

make clean

Example Usage:

To run this program, you can either specify the arguements in the command lline when the program is running when each query is printed to the terminal, or you can include it as a command line arguement.

./blur

Original image name: in.ppm

Result image name: out.ppm

Radius: 1

Sigma: 1

OR

./blur in.ppm out.ppm 1 1

Exercise:

Port as much of the code as your team can can to GPUs using OpenACC, and CUDA.

About

LANL PCSRI GPU Exercise - C implementation of Gaussian Blurring of .ppm format image

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 95.7%
  • Makefile 4.3%