Exemplo n.º 1
0
//=============================================================================
int Epetra_BLAS::IAMAX(const int N, const float * X, const int INCX) const {
  return(ISAMAX_F77(&N, X, &INCX)-1);// Note that we return base zero result
}
Exemplo n.º 2
0
 int BLAS<int, float>::IAMAX(const int n, const float* x, const int incx) const
 { return ISAMAX_F77(&n, x, &incx); }