https://github.com/linbox-team/fflas-ffpack
Raw File
Tip revision: ac7f9915e55dc1462860dcfc5ffeb2bd5295e75c authored by Jean-Guillaume Dumas on 31 May 2017, 12:15:54 UTC
smaller default bench
Tip revision: ac7f991
test-det.C
/* -*- mode: C++; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
// vim:sts=8:sw=8:ts=8:noet:sr:cino=>s,f0,{0,g0,(0,\:0,t0,+0,=s

/*
 * Copyright (C) FFLAS-FFPACK
 * Written by Clément Pernet
 * This file is Free Software and part of FFLAS-FFPACK.
 *
 * ========LICENCE========
 * This file is part of the library FFLAS-FFPACK.
 *
 * FFLAS-FFPACK 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========
 *.
 */


//--------------------------------------------------------------------------
//                        Test for det
//
//--------------------------------------------------------------------------
// Clement Pernet
//-------------------------------------------------------------------------

#include "fflas-ffpack/fflas-ffpack-config.h"
#include <iomanip>
#include <iostream>
#include <givaro/modular-balanced.h>

#include "fflas-ffpack/utils/timer.h"
#include "fflas-ffpack/ffpack/ffpack.h"
#include "fflas-ffpack/utils/args-parser.h"

#include "test-utils.h"

// using namespace std;
template<class Field, class RandIter>
bool test_det(Field &F, size_t n, int iter, RandIter& G)
{
	typedef typename Field::Element Element;
	//! @todo test with stride
	Element * A = FFLAS::fflas_new (F, n, n);

	bool pass = true;
	Element d,dt;
	F.init(d); F.init(dt);
	for(int i = 0;i<iter;++i){
		G.random(dt);
		FFPACK::RandomMatrixWithDet(F, n, dt, A, n, G);
		F.assign(d, FFPACK::Det (F, n, n, A, n));
		if (!F.areEqual(dt,d)) {
			pass = false;
			break;
		}
		++dt;
	}
	FFLAS::fflas_delete( A);
	return pass;
	}

int main(int argc, char** argv)
{

	int iters =10 ;
	Givaro::Integer p = 65521 ;
	size_t n = 200 ;
	uint64_t seed = time(NULL);
	Argument as[] = {
		{ 'p', "-p P", "Set the field characteristic.",         TYPE_INTEGER , &p },
		{ 'n', "-n N", "Set the dimension of the matrix.",      TYPE_INT , &n },
		{ 'i', "-i R", "Set number of repetitions.",            TYPE_INT , &iters },
		{ 's', "-s seed", "Set seed for the random generator", TYPE_INT, &seed },
		END_OF_ARGUMENTS
	};

	FFLAS::parseArguments(argc,argv,as);

	bool pass = true ;
	typedef Givaro::ModularBalanced<double> Field;
	Field F(p);
	Field::RandIter G(F,0,seed);
	pass &= test_det(F,n,iters,G);
	// pass &= test_det(F,0,iters);

	return ((pass==true)?0:1);
}
back to top