pqc/external/flint-2.4.3/fmpz_mod_poly/profile/p-mul.c
2014-05-24 23:16:06 +02:00

86 lines
2.4 KiB
C

/*=============================================================================
This file is part of FLINT.
FLINT 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.
FLINT 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 FLINT; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
=============================================================================*/
/******************************************************************************
Copyright (C) 2012 William Hart
******************************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <gmp.h>
#include <float.h>
#include "flint.h"
#include "fmpz.h"
#include "fmpz_mod_poly.h"
#include "ulong_extras.h"
#include "profiler.h"
int
main(void)
{
slong len, iter;
fmpz_mod_poly_t f, g, r;
fmpz_t N;
timeit_t t;
char N_str[201] = "29799904256775982671863388319999573561548825027149399972531599612392671227006866151136667908641695103422986028076864929902803267437351318167549013218980573566942647077444419419003164546362008247462049";
FLINT_TEST_INIT(state);
len = 36865;
fmpz_init(N);
fmpz_set_str(N, N_str, 10);
fmpz_mod_poly_init2(f, N, len);
fmpz_mod_poly_init2(g, N, len);
fmpz_mod_poly_init2(r, N, 2*len - 1);
/*
Construct random polynomials f, g
*/
fmpz_mod_poly_randtest(f, state, len);
fmpz_mod_poly_randtest(g, state, len);
/*
Time multiplication
*/
timeit_start(t);
for (iter = 0; iter < 10; iter++)
fmpz_mod_poly_mul(r, f, g);
timeit_stop(t);
flint_printf("len = %wd, time = %wdms\n", len, ((slong) t->cpu)/10);
fmpz_mod_poly_clear(f);
fmpz_mod_poly_clear(g);
fmpz_mod_poly_clear(r);
fmpz_clear(N);
flint_randclear(state);
}