M2_SETI/A4/TP_GPU-master/SAXPY/saxpy.h
2022-12-09 09:03:22 +01:00

24 lines
331 B
C

//#define SEUILLAGE_H
//#ifndef SEUILLAGE_H
// includes, system
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <math.h>
#define BLOCK_SIZE 16
// Prototype
void runTest( int argc, char** argv);
extern "C" void saxpy_C(float *vector_SAXPY, float A, float *vector_X, float *vector_Y, int N);
//#endif