Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 536 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 536 Bytes

Introduction to Heterogeneous Computing

Talk slide link

Build instruction:

cd /path/to/project/root
mkdir build
cd build
cmake ..
make

This builds 5 executables:

  • hello => a simple hello world example
  • add_cpu => perform arithmetic operations on a large array using CPU
  • add_gpu => perform same operation using GPU
  • rotate_cpu => rotate an image using CPU
  • rotate_gpu => same operation using GPU