/*
Copyright (C) 2012 William Hart
This file is part of FLINT.
FLINT is free software: you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License (LGPL) as published
by the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version. See .
*/
#include
#include
#include
#include
#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;
fmpz_mod_ctx_t ctx;
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_ctx_init(ctx, N);
fmpz_mod_poly_init2(f, len, ctx);
fmpz_mod_poly_init2(g, len, ctx);
fmpz_mod_poly_init2(r, 2*len - 1, ctx);
/*
Construct random polynomials f, g
*/
fmpz_mod_poly_randtest(f, state, len, ctx);
fmpz_mod_poly_randtest(g, state, len, ctx);
/*
Time multiplication
*/
timeit_start(t);
for (iter = 0; iter < 10; iter++)
fmpz_mod_poly_mul(r, f, g, ctx);
timeit_stop(t);
flint_printf("len = %wd, time = %wdms\n", len, ((slong) t->cpu)/10);
fmpz_mod_poly_clear(f, ctx);
fmpz_mod_poly_clear(g, ctx);
fmpz_mod_poly_clear(r, ctx);
fmpz_clear(N);
fmpz_mod_ctx_clear(ctx);
flint_randclear(state);
}