1 | //
|
---|
2 | // disttest.cc
|
---|
3 | //
|
---|
4 | // Copyright (C) 1996 Limit Point Systems, Inc.
|
---|
5 | //
|
---|
6 | // Author: Curtis Janssen <cljanss@limitpt.com>
|
---|
7 | // Maintainer: LPS
|
---|
8 | //
|
---|
9 | // This file is part of the SC Toolkit.
|
---|
10 | //
|
---|
11 | // The SC Toolkit is free software; you can redistribute it and/or modify
|
---|
12 | // it under the terms of the GNU Library General Public License as published by
|
---|
13 | // the Free Software Foundation; either version 2, or (at your option)
|
---|
14 | // any later version.
|
---|
15 | //
|
---|
16 | // The SC Toolkit is distributed in the hope that it will be useful,
|
---|
17 | // but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
18 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
19 | // GNU Library General Public License for more details.
|
---|
20 | //
|
---|
21 | // You should have received a copy of the GNU Library General Public License
|
---|
22 | // along with the SC Toolkit; see the file COPYING.LIB. If not, write to
|
---|
23 | // the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
---|
24 | //
|
---|
25 | // The U.S. Government is granted a limited license as per AL 91-7.
|
---|
26 | //
|
---|
27 |
|
---|
28 | #include <iostream>
|
---|
29 | #include <math.h>
|
---|
30 |
|
---|
31 | #include <util/misc/bug.h>
|
---|
32 | #include <util/misc/formio.h>
|
---|
33 | #include <util/group/messshm.h>
|
---|
34 | #include <math/scmat/dist.h>
|
---|
35 |
|
---|
36 | #include <util/group/linkage.h>
|
---|
37 |
|
---|
38 | using namespace std;
|
---|
39 | using namespace sc;
|
---|
40 |
|
---|
41 | void matrixtest(Ref<SCMatrixKit> kit, Ref<KeyVal> keyval,
|
---|
42 | RefSCDimension d1,RefSCDimension d2,RefSCDimension d3,
|
---|
43 | bool have_svd);
|
---|
44 |
|
---|
45 | main(int argc, char** argv)
|
---|
46 | {
|
---|
47 | Ref<KeyVal> keyval = new ParsedKeyVal(SRCDIR "/matrixtest.in");
|
---|
48 |
|
---|
49 | Ref<MessageGrp> msg = MessageGrp::initial_messagegrp(argc, argv);
|
---|
50 |
|
---|
51 | if (msg.null()) {
|
---|
52 | msg << keyval->describedclassvalue("messagegrp");
|
---|
53 |
|
---|
54 | if (msg.null()) {
|
---|
55 | cerr << indent << "Couldn't initialize MessageGrp\n";
|
---|
56 | abort();
|
---|
57 | }
|
---|
58 | }
|
---|
59 |
|
---|
60 | MessageGrp::set_default_messagegrp(msg);
|
---|
61 |
|
---|
62 | Ref<Debugger> d; d << keyval->describedclassvalue("debugger");
|
---|
63 | if (d.nonnull()) {
|
---|
64 | d->set_prefix(msg->me());
|
---|
65 | d->set_exec(argv[0]);
|
---|
66 | }
|
---|
67 |
|
---|
68 | // test the blocklist send and receive
|
---|
69 | if (msg->n() > 1) {
|
---|
70 | Ref<SCMatrixBlockList> l = new SCMatrixBlockList;
|
---|
71 | l->append(new SCMatrixRectBlock(0,5,0,2));
|
---|
72 | l->append(new SCMatrixRectBlock(0,3,0,11));
|
---|
73 | l->append(new SCMatrixLTriBlock(7,13));
|
---|
74 | if (msg->me() == 0) {
|
---|
75 | StateSend out(msg);
|
---|
76 | out.target(1);
|
---|
77 | out.copy_references();
|
---|
78 | SavableState::save_state(l.pointer(), out);
|
---|
79 | out.flush();
|
---|
80 | }
|
---|
81 | else if (msg->me() == 1) {
|
---|
82 | StateRecv in(msg);
|
---|
83 | in.source(0);
|
---|
84 | l << SavableState::restore_state(in);
|
---|
85 | }
|
---|
86 | }
|
---|
87 |
|
---|
88 | Ref<SCMatrixKit> kit = new DistSCMatrixKit;
|
---|
89 | RefSCDimension d1; d1 << keyval->describedclassvalue("d1");
|
---|
90 | RefSCDimension d2; d2 << keyval->describedclassvalue("d2");
|
---|
91 | RefSCDimension d3; d3 << keyval->describedclassvalue("d3");
|
---|
92 |
|
---|
93 | int nblocks = (int)sqrt(double(msg->n()));
|
---|
94 |
|
---|
95 | // replace dimensions with dimensions that have subblocks
|
---|
96 | d1 = new SCDimension(d1.n(), nblocks);
|
---|
97 | d2 = new SCDimension(d2.n(), nblocks);
|
---|
98 | d3 = new SCDimension(d3.n(), nblocks);
|
---|
99 |
|
---|
100 | matrixtest(kit,keyval,d1,d2,d3,false);
|
---|
101 |
|
---|
102 | return 0;
|
---|
103 | }
|
---|
104 |
|
---|
105 | /////////////////////////////////////////////////////////////////////////////
|
---|
106 |
|
---|
107 | // Local Variables:
|
---|
108 | // mode: c++
|
---|
109 | // c-file-style: "CLJ"
|
---|
110 | // End:
|
---|