summaryrefslogtreecommitdiff
blob: 3c50fb4bac3506404e1a1bc69902d0c3fffda67f (plain)
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
//=====================================================
// Copyright (C) 2011 Andrea Arteaga <andyspiros@gmail.com>
//=====================================================
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
//
#ifndef ACTION_PARALLEL_QR_DECOMP_HH_
#define ACTION_PARALLEL_QR_DECOMP_HH_

#include "utilities.h"
#include "init/init_function.hh"
#include "init/init_vector.hh"

#include "lapack_interface.hh"
#include "STL_interface.hh"

#include <string>
#include <algorithm>

template<class Interface>
class Action_parallel_qr_decomp {

public :

  // Constructor
  BTL_DONT_INLINE Action_parallel_qr_decomp( int size ) : _size(size)
  {
    MESSAGE("Action_parallel_qr_decomp Ctor");

    int myid, procnum;
    blacs_pinfo_(&myid, &procnum);
    iamroot = (myid == 0);

    // STL matrix and vector initialization
    if (iamroot) {
        /* Using a constant seed */
        const unsigned seed = 3;
        init_matrix(Global_A_stl, size, seed);
    }

    const int blocksize = std::max(std::min(size/4, 64), 2);
    scatter_matrix(Global_A_stl, Local_A_stl, desc, size, size, blocksize, blocksize);
    LocalRows = desc[8];
    LocalCols = Local_A_stl.size()/desc[8];

    // Generic local matrix and vectors initialization
    Interface::matrix_from_stl(Local_A    , Local_A_stl);

    _cost = 2.0*size*size*size;
  }


  // Invalidate copy constructor
  Action_parallel_qr_decomp(const Action_parallel_qr_decomp&)
  {
    INFOS("illegal call to Action_parallel_qr_decomp copy constructor");
    exit(1);
  }

  // Destructor
  ~Action_parallel_qr_decomp()
  {
    MESSAGE("Action_parallel_qr_decomp destructor");

    // Deallocation
    Interface::free_matrix(Local_A    , Local_A_stl.size());
  }

  // Action name
  static inline std::string name()
  {
    return "qr_decomp_" + Interface::name();
  }

  double nb_op_base()
  {
    return _cost;
  }

  BTL_DONT_INLINE void initialize()
  {
  }

  BTL_DONT_INLINE void calculate()
  {
    Interface::copy_matrix(&Local_A_stl[0], Local_A, Local_A_stl.size());
    Interface::parallel_qr_decomp(Local_A, desc);
  }

  BTL_DONT_INLINE void check_result()
  {
  }

private:
  int _size, desc[9], LocalRows, LocalCols;
  double _cost;
  bool iamroot;

  typename Interface::stl_matrix Global_A_stl;
  typename Interface::stl_matrix Local_A_stl;
  typename Interface::gene_matrix Local_A;
};


#endif /* ACTION_PARALLEL_QR_DECOMP_HH_ */