1
      2
      3
      4
      5
<doc  6
      7
      8
      9
     10
     11
     12
     13
     14

     15
     16
     17
     18
     19
     20
#ifndef ULMBLAS_IMPL_LAPACK_GETF2_H
#define ULMBLAS_IMPL_LAPACK_GETF2_H 1

namespace ulmBLAS {

template <typename IndexType, typename T>
    IndexType
    getf2(IndexType    m,
          IndexType    n,
          T            *A,
          IndexType    incRowA,
          IndexType    incColA,
          IndexType    *piv,
          IndexType    incPiv);

// namespace ulmBLAS

#endif // ULMBLAS_IMPL_LAPACK_GETF2_H

#include <ulmblas/impl/lapack/getf2.tcc>