mirror of
https://github.com/Steffo99/unimore-hpc-assignments.git
synced 2024-11-22 16:14:24 +00:00
11 lines
185 B
C++
11 lines
185 B
C++
#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
|