You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

44 lines
1.0 KiB

#include <cln/number.h>
#include <cln/io.h>
#include <cln/integer.h>
#include <cln/lfloat.h>
#include <cln/rational.h>
#include <cln/float_io.h>
#include <cln/random.h>
#include <cstdlib>
#include <cstring>
#include <cln/timing.h>
using namespace cln;
int main (int argc, char * argv[])
{
int repetitions = 1;
if ((argc >= 3) && !strcmp(argv[1],"-r")) {
repetitions = atoi(argv[2]);
argc -= 2; argv += 2;
}
if (argc < 4)
exit(1);
uintL m1 = atoi(argv[1]);
cl_I m2 = cl_I(argv[2]);
cl_I M2 = (cl_I)1 << (intDsize*m2);
cl_I m3 = cl_I(argv[3]);
cl_I M3 = (cl_I)1 << (intDsize*m3);
float_format_t M1 = (float_format_t)(m1*intDsize);
cl_I u;
cl_I v;
do { u = random_I(M2); } while (zerop(u));
do { v = random_I(M3); } while (zerop(v) || gcd(u,v) > 1);
cl_RA y = u / v;
cl_F p;
{ CL_TIMING;
for (int rep = repetitions; rep > 0; rep--)
{ p = cl_float(u,M1)/cl_float(v,M1); }
}
cout << p << endl;
{ CL_TIMING;
for (int rep = repetitions; rep > 0; rep--)
{ p = cl_float(y,M1); }
}
cout << p << endl;
}