Skip to content
/ fibCUDA Public

Short intro to parallel computing with CUDA.

Notifications You must be signed in to change notification settings

mgula/fibCUDA

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

This program was written as an introduction to parallel computing and uses CUDA to calculate the Fibonacci sequence on a GPU. To compile:

nvcc fib_cuda.cu -o fib_cuda

To run:

./fib_cuda x

where x is the desired numbers of the sequence you wish to calculate.

Note: this program uses unsigned long integers, which overflow after the 93rd number in the sequence. Kind of a crippling restriction; but again, this program was written mainly to familiarize with CUDA/parallel computing.

About

Short intro to parallel computing with CUDA.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages