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 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290
|
/* tests/test-submatrix.C
* Copyright (C) 2001, 2002 Bradford Hovinen
*
* Written by Bradford Hovinen <hovinen@cis.udel.edu>
*
* ========LICENCE========
* This file is part of the library LinBox.
*
* LinBox is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* ========LICENCE========
*/
/*! @file tests/test-submatrix.C
* @ingroup tests
* @brief no doc.
* @test no doc.
*/
#include "linbox/linbox-config.h"
#include <iostream>
#include "linbox/util/commentator.h"
#include "linbox/field/archetype.h"
#include "linbox/ring/modular.h"
#include "linbox/blackbox/submatrix.h"
#include "linbox/vector/stream.h"
#include "test-common.h"
#include "test-generic.h"
using namespace LinBox;
/* Test 1: Application of submatrices onto random vectors
*
* Construct 9 dense matrices and place them, as submatrices, into a 3x3 dense
* grid. Apply submatrices of the result onto random vectors and check equality
* with the result of applying the submatrices directly.
*
* F - Field over which to perform computations
* n - Dimension to which to make matrices
* iterations - Number of iterations to run
* N - Number of random vectors to which to apply
*
* Return true on success and false on failure
*/
template <class Field>
static bool testRandomApply (Field &F,
unsigned int iterations,
size_t n,
VectorStream<BlasVector<Field> > &stream)
{
typedef BlasMatrix <Field> Blackbox;
commentator().start ("Testing random apply", "testRandomApply", iterations);
bool ret = true;
BlasVector<Field> v, w1(n), w2(n);
size_t i, j, k, l;
Blackbox *Ai[9];
Blackbox A (F, n * 3, n * 3);
for (i = 0; i < 9; i++)
Ai[i] = new Blackbox (F, n, n);
typename Field::Element x;
typename Field::RandIter r (F);
for (i = 0; i < iterations; i++) {
commentator().startIteration (i);
bool iter_passed = true;
for (j = 0; j < 9; j++) {
for (k = 0; k < n; k++) {
for (l = 0; l < n; l++) {
r.random (x);
Ai[j]->setEntry (k, l, x);
A.setEntry (k + n * (j / 3), l + n * (j % 3), x);
}
}
}
stream.reset ();
while (stream) {
ostream &report = commentator().report (Commentator::LEVEL_UNIMPORTANT, INTERNAL_DESCRIPTION);
stream.next (v);
report << "Input vector: ";
printVector<Field> (F, report, v);
for (k = 0; k < 9; k++) {
report << "Checking section " << k / 3 + 1 << "x" << k % 3 + 1 << endl;
Submatrix<Blackbox> B (F, &A, n * (k / 3), n * (k % 3), n, n);
B.apply (w1, v);
report << "Output vector (computed): ";
printVector<Field> (F, report, w1);
Ai[k]->apply (w2, v);
report << "Output vector (true): ";
printVector<Field> (F, report, w2);
for (l = 0; l < n; l++)
if (!F.areEqual (w1[l], w2[l]))
ret = iter_passed = false;
}
}
if (!iter_passed)
commentator().report (Commentator::LEVEL_IMPORTANT, INTERNAL_ERROR)
<< "ERROR: Vectors are not equal" << endl;
commentator().stop ("done");
commentator().progress ();
}
stream.reset ();
commentator().stop (MSG_STATUS (ret), (const char *) 0, "testRandomApply");
return ret;
}
/* Test 2: Random linearity
*
* Construct a random dense matrix and a submatrix thereof. Call testLinearity
* in test-generic.h to test that the submatrix is a linear operator
*
* F - Field over which to perform computations
* n - Dimension to which to make matrices
* iterations - Number of iterations to run
* N - Number of random vectors to which to apply
*
* Return true on success and false on failure
*/
template <class Field>
static bool testRandomLinearity (const Field &F,
VectorStream<BlasVector<Field> > &A_stream,
VectorStream<BlasVector<Field> > &v1_stream,
VectorStream<BlasVector<Field> > &v2_stream)
{
commentator().start ("Testing random linearity", "testRandomLinearity", v1_stream.size ());
BlasMatrix<Field> A (F, A_stream);
Submatrix<BlasMatrix<Field> > Ap (&A, 0, 0, v1_stream.dim (), v2_stream.dim ());
bool ret = testLinearity (Ap, v1_stream, v2_stream);
A_stream.reset ();
v1_stream.reset ();
v2_stream.reset ();
commentator().stop (MSG_STATUS (ret), (const char *) 0, "testRandomLinearity");
return ret;
}
/* Test 3: Random transpose
*
* Construct a random dense matrix and a submatrix thereof. Call testLinearity
* in test-generic.h to test that the submatrix is a linear operator
*
* F - Field over which to perform computations
* n - Dimension to which to make matrices
* iterations - Number of iterations to run
* N - Number of random vectors to which to apply
*
* Return true on success and false on failure
*/
template <class Field>
static bool testRandomTranspose (const Field &F,
VectorStream<BlasVector<Field> > &A_stream,
VectorStream<BlasVector<Field> > &v1_stream,
VectorStream<BlasVector<Field> > &v2_stream)
{
commentator().start ("Testing random transpose", "testRandomTranspose", v1_stream.size ());
BlasMatrix<Field> A (F, A_stream);
Submatrix<BlasMatrix<Field> > Ap (&A, 0, 0, v1_stream.dim (), v2_stream.dim ());
bool ret = testTranspose (F, Ap, v1_stream, v2_stream);
A_stream.reset ();
v1_stream.reset ();
v2_stream.reset ();
commentator().stop (MSG_STATUS (ret), (const char *) 0, "testRandomTranspose");
return ret;
}
template<class Field>
bool testBasics(const Field & F)
{
{
BlasMatrix<Field> Container(F,2,2);
BlasSubmatrix<BlasMatrix<Field> > subContainer(Container,0,0,1,1);
if (Container.getPointer() != subContainer.getPointer()) {
return false ;
}
}
{
const BlasMatrix<Field> Container(F,2,2);
BlasSubmatrix<const BlasMatrix<Field> > subContainer(Container,0,0,1,1);
if (Container.getPointer() != subContainer.getPointer()) {
return false ;
}
}
return true ;
}
int main (int argc, char **argv)
{
bool pass = true;
static size_t n = 10;
static integer q = 101;
static int iterations = 100;
static int N = 1;
static Argument args[] = {
{ 'n', "-n N", "Set dimension of test matrices to NxN.", TYPE_INT, &n },
{ 'q', "-q Q", "Operate over the \"field\" GF(Q) [1].", TYPE_INTEGER, &q },
{ 'i', "-i I", "Perform each test for I iterations.", TYPE_INT, &iterations },
{ 'N', "-N N", "Perform each test on N vectors.", TYPE_INT, &N },
END_OF_ARGUMENTS
};
typedef Givaro::Modular<uint32_t> Field;
parseArguments (argc, argv, args);
Field F (q); Field::RandIter gen(F);
commentator().start("Submatrix black box test suite", "Submatrix");
commentator().getMessageClass (INTERNAL_DESCRIPTION).setMaxDepth (5);
commentator().getMessageClass (INTERNAL_DESCRIPTION).setMaxDetailLevel (Commentator::LEVEL_UNIMPORTANT);
RandomDenseStream<Field> stream (F, gen, n, N);
RandomDenseStream<Field> A_stream (F, gen, n, n);
RandomDenseStream<Field> v1_stream (F, gen, n / 2, iterations);
RandomDenseStream<Field> v2_stream (F, gen, n / 2, iterations);
#if 0
if (!testRandomApply (F, iterations, n, stream)) pass = false;
#endif
if (!testRandomLinearity (F, A_stream, v1_stream, v2_stream)) pass = false;
if (!testRandomTranspose (F, A_stream, v1_stream, v2_stream)) pass = false;
if (!testBasics(F) ) pass = false;
commentator().stop("Submatrix black box test suite");
return pass ? 0 : -1;
}
// Local Variables:
// mode: C++
// tab-width: 4
// indent-tabs-mode: nil
// c-basic-offset: 4
// End:
// vim:sts=4:sw=4:ts=4:et:sr:cino=>s,f0,{0,g0,(0,\:0,t0,+0,=s
|