TestU01

TestU01 is a software library, implemented in the ANSI C language, and offering a collection of utilities for the empirical statistical testing of uniform random number generators.

Installed version

This sofotware is installed on lumière cluster i.e mesologin1.univ-fcomte.fr

  • To load the software, use:
    $ module load testu01
  • To compile a program called birth1.c for example, one may use
   $ gcc birth1.c -o birth1 -ltestu01 -lprobdist -lmylib -lm
 
(or
 
   $ gcc birth1.c -o birth1 -ltestu01 -lprobdist -lmylib -lgmp -lm

SGE script

From your WORK directory create a sccript like this:

script.sge
#!/bin/bash -l
#$ -V
#$ -N test_sge
#$ -cwd
#$ -o $JOB_NAME.$JOB_ID.out
 
#$ -q all.q 
#$ -l h_vmem=4G
 
./myProgram myPramas

And than submite your job to SGE :

$qsub script.sge

Links