1
Fork 0
mirror of https://github.com/Steffo99/unimore-hpc-assignments.git synced 2024-11-23 00:24:23 +00:00
hpc-2022-g3/hls/lab1/exercise_0.hpp

12 lines
185 B
C++
Raw Normal View History

2021-05-13 20:03:14 +00:00
#ifndef VADD_HPP
#define VADD_HPP
#include <stdio.h>
//#define TEST_DATA_SIZE 4194304 // 2^22
#define TEST_DATA_SIZE 12
void vadd(int *a, int *b, int *c, const int len);
#endif