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
     54
     55
     56
     57
     58
     59
     60
     61
     62
     63
     64
     65
     66
     67
     68
     69
     70
     71
     72
     73
     74
     75
     76
     77
     78
     79
     80
     81
     82
     83
     84
     85
     86
     87
     88
     89
     90
     91
     92
     93
     94
     95
     96
#include <cassert>
#include <random>
#include <type_traits>
#include <hpc/matvec/densevector.h>
#include <hpc/matvec/iamax.h>
#include <hpc/matvec/r.h>
#include <hpc/matvec/scal.h>
#include <hpc/matvec/swap.h>
#include <hpc/matvec/print.h>


//
//  Random initializer for general matrices: real and complex valued
//
template <typename Index, typename T>
void
randomInit(Index m, Index n, T *A, Index incRowA, Index incColA)
{
    std::random_device                  random;
    std::default_random_engine          mt(random());
    std::uniform_real_distribution<T>   uniform(-100,100);

    for (Index i=0; i<m; ++i) {
        for (Index j=0; j<n; ++j) {
            A[i*incRowA+j*incColA] = uniform(mt);
        }
    }
}

template <typename VX>
typename std::enable_if<hpc::matvec::IsDenseVector<VX>::value,
                        void>::type
randomInit(VX &x)
{
    typedef typename VX::Index  Index;

    randomInit(x.length, Index(1), x.data, x.inc, Index(1));
}

template <typename MA>
typename std::enable_if<hpc::matvec::IsGeMatrix<MA>::value,
                        void>::type
randomInit(MA &A)
{
    randomInit(A.numRows, A.numCols, A.data, A.incRow, A.incCol);
}

//------------------------------------------------------------------------------

int
main()
{
    using namespace hpc::matvec;

    typedef double       T;
    typedef std::size_t  Index;

    GeMatrix<T, Index>    A(8,10);
    auto x = A.row(2);
    auto y = x(3, 7);
    auto z = y(0, 4, 2);

    randomInit(A);

    print(A, "A");
    print(x, "x");
    print(y, "y");
    print(z, "z");

    printf("iamax(x) = %ld\n", iamax(x));
    printf("iamax(y) = %ld\n", iamax(y));
    printf("iamax(z) = %ld\n", iamax(z));

    scal(2.5, y);

    auto x1 = x(0,5);
    auto x2 = x(5,5);

    swap(x1, x2);

    print(A, "A");
    print(x, "x");
    print(y, "y");
    print(z, "z");

    auto a10 = A.col(0)(1,7);
    auto a01 = A.row(0)(1,9);
    auto A11 = A(1,1,7,9);

    print(a01, "a01");
    print(a10, "a10");
    print(A11, "A11");

    r(1.5, a10, a01, A11);
    print(A, "A");
}