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

     16
     17
     18
     19
     20
     21
#ifndef ULMBLAS_IMPL_LAPACK_LASWP_H
#define ULMBLAS_IMPL_LAPACK_LASWP_H 1

namespace ulmBLAS {

template <typename IndexType, typename T>
    void
    laswp(IndexType    n,
          T            *A,
          IndexType    incRowA,
          IndexType    incColA,
          IndexType    k1,
          IndexType    k2,
          IndexType    *piv,
          IndexType    incPiv);

// namespace ulmBLAS

#endif // ULMBLAS_IMPL_LAPACK_LASWP_H

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