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