summaryrefslogtreecommitdiffstats
path: root/src/Core/include/axpby.h
blob: e13d6e18836f854030c2108fda80d5a52c6e7127 (plain)
1
2
3
4
5
6
7
8
9
10
#include <math.h>
#include <stdlib.h>
#include <stdio.h>
#include "omp.h"
#include "dll_export.h"
#include "utilities.h"


DLL_EXPORT int saxpby(float * x, float * y, float * out, float a, float b, long size, int nThreads);
DLL_EXPORT int daxpby(double * x, double * y, double * out, double a, double b, long size, int nThreads);