43 #ifndef THREADED_BLAS_DH 
   44 #define THREADED_BLAS_DH 
   46 #if defined(Ifpack_SHOW_DEPRECATED_WARNINGS) 
   48 #warning "The Ifpack package is deprecated" 
   57 #include "euclid_common.h" 
   59 #ifdef SEQUENTIAL_MODE 
   60 #define MatVec       matvec_euclid_seq 
   68   extern void matvec_euclid_seq (
int n, 
int *rp, 
int *cval, 
double *aval,
 
   69                  double *x, 
double *y);
 
   70   extern double InnerProd (
int local_n, 
double *x, 
double *y);
 
   71   extern double Norm2 (
int local_n, 
double *x);
 
   72   extern void Axpy (
int n, 
double alpha, 
double *x, 
double *y);
 
   73   extern double Norm2 (
int n, 
double *x);
 
   74   extern void CopyVec (
int n, 
double *xIN, 
double *yOUT);
 
   75   extern void ScaleVec (
int n, 
double alpha, 
double *x);