SCALAPACK 2.2.2
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches
BI_cvvsum.c
Go to the documentation of this file.
1#include "Bdef.h"
2void BI_cvvsum(Int N, char *vec1, char *vec2)
3{
4 float *v1=(float*)vec1, *v2=(float*)vec2;
5 Int k;
6 N *=2;
7 for (k=0; k < N; k++) v1[k] += v2[k];
8}
void BI_cvvsum(Int N, char *vec1, char *vec2)
Definition BI_cvvsum.c:2
#define Int
Definition Bconfig.h:22