1
      2
      3
      4
      5
      6
      7
      8
      9
     10
     11
     12
     13
     14
     15
     16
     17
     18
     19
     20
     21
     22
     23
     24
     25
     26
     27
     28
     29
     30
     31
     32
     33
     34
     35
     36
     37
     38
     39
     40
     41
     42
     43
     44
     45
     46
     47
     48
     49
     50
     51
     52
     53
#ifndef ULMBLAS_IMPL_LEVEL1EXTENSIONS_TRUSCAL_TCC
#define ULMBLAS_IMPL_LEVEL1EXTENSIONS_TRUSCAL_TCC 1

#include <algorithm>
#include <ulmblas/impl/level1/scal.h>
#include <ulmblas/impl/level1extensions/truscal.h>

namespace ulmBLAS {

template <typename IndexType, typename Alpha, typename MA>
void
truscal(IndexType    m,
        IndexType    n,
        bool         unit,
        const Alpha  &alpha,
        MA           *A,
        IndexType    incRowA,
        IndexType    incColA)
{
    const IndexType    UnitStride(1);

    if (alpha==Alpha(1) || m<=0 || n<=0) {
        return;
    }

    if (unit) {
        truscal(m, n-1false, alpha, &A[1*incColA], incRowA, incColA);
        return;
    }

    if (incRowA==UnitStride) {
        for (IndexType j=0; j<n; ++j) {
            scal(std::min(j+1,m), alpha, &A[j*incColA], UnitStride);
        }
    } else if (incColA==UnitStride) {
        const IndexType k = std::min(m, n);
        for (IndexType i=0; i<k; ++i) {
            scal(n-i, alpha, &A[i*(incRowA+incColA)], UnitStride);
        }
    } else {
        const IndexType k = std::min(m, n);
        for (IndexType i=0; i<k; ++i) {
            for (IndexType j=i; j<n; ++j) {
                A[i*incRowA+j*incColA] *= alpha;
            }
        }
    }
}

// namespace ulmBLAS

#endif // ULMBLAS_IMPL_LEVEL1EXTENSIONS_TRUSCAL_TCC 1