Uses of Class
spec.benchmarks.scimark.utils.Random

Packages that use Random
spec.benchmarks.scimark.fft   
spec.benchmarks.scimark.lu   
spec.benchmarks.scimark.monte_carlo   
spec.benchmarks.scimark.sor   
spec.benchmarks.scimark.sparse   
spec.benchmarks.scimark.utils   
 

Uses of Random in spec.benchmarks.scimark.fft
 

Methods in spec.benchmarks.scimark.fft with parameters of type Random
 double FFT.measureFFT(int N, double mintime, Random R)
           
 

Uses of Random in spec.benchmarks.scimark.lu
 

Methods in spec.benchmarks.scimark.lu with parameters of type Random
 double LU.measureLU(int N, double min_time, Random R)
           
 

Uses of Random in spec.benchmarks.scimark.monte_carlo
 

Methods in spec.benchmarks.scimark.monte_carlo with parameters of type Random
 double MonteCarlo.measureMonteCarlo(double min_time, Random R)
           
 

Uses of Random in spec.benchmarks.scimark.sor
 

Methods in spec.benchmarks.scimark.sor with parameters of type Random
 double SOR.measureSOR(int N, double min_time, Random R)
           
 

Uses of Random in spec.benchmarks.scimark.sparse
 

Methods in spec.benchmarks.scimark.sparse with parameters of type Random
 double SparseCompRow.measureSparseMatmult(int N, int nz, double min_time, Random R)
           
 

Uses of Random in spec.benchmarks.scimark.utils
 

Methods in spec.benchmarks.scimark.utils with parameters of type Random
static double[][] kernel.RandomizeMatrix(double[][] A, Random R)
           
static double[] kernel.RandomizeVector(double[] A, Random R)
           
static double[][] kernel.RandomMatrix(int M, int N, Random R)
           
static double[] kernel.RandomVector(int N, Random R)