public class RandomMatrixGenerator extends Object
Constructor and Description |
---|
RandomMatrixGenerator() |
RandomMatrixGenerator(org.apache.sysml.runtime.matrix.data.RandomMatrixGenerator.PDF pdf,
int r,
int c,
int rpb,
int cpb,
double sp)
Instantiates a Random number generator
|
RandomMatrixGenerator(org.apache.sysml.runtime.matrix.data.RandomMatrixGenerator.PDF pdf,
int r,
int c,
int rpb,
int cpb,
double sp,
double min,
double max)
Instantiates a Random number generator
|
RandomMatrixGenerator(org.apache.sysml.runtime.matrix.data.RandomMatrixGenerator.PDF pdf,
int r,
int c,
int rpb,
int cpb,
double sp,
double min,
double max,
double mean)
Instantiates a Random number generator with a specific poisson mean
|
RandomMatrixGenerator(String pdfStr,
int r,
int c,
int rpb,
int cpb,
double sp,
double min,
double max)
Instantiates a Random number generator
|
Modifier and Type | Method and Description |
---|---|
void |
init(org.apache.sysml.runtime.matrix.data.RandomMatrixGenerator.PDF pdf,
int r,
int c,
int rpb,
int cpb,
double sp,
double min,
double max)
Initializes internal data structures.
|
void |
init(org.apache.sysml.runtime.matrix.data.RandomMatrixGenerator.PDF pdf,
int r,
int c,
int rpb,
int cpb,
double sp,
double min,
double max,
double mean)
Instantiates a Random number generator with a specific poisson mean
|
protected void |
setupValuePRNG() |
public RandomMatrixGenerator()
public RandomMatrixGenerator(org.apache.sysml.runtime.matrix.data.RandomMatrixGenerator.PDF pdf, int r, int c, int rpb, int cpb, double sp)
pdf
- probability density functionr
- number of rowsc
- number of columnsrpb
- rows per blockcpb
- columns per blocksp
- sparsity (0 = completely sparse, 1 = completely dense)public RandomMatrixGenerator(String pdfStr, int r, int c, int rpb, int cpb, double sp, double min, double max)
pdfStr
- probability density functionr
- number of rowsc
- number of columnsrpb
- rows per blockcpb
- columns per blocksp
- sparsity (0 = completely sparse, 1 = completely dense)min
- minimum of range of random numbersmax
- maximum of range of random numberspublic RandomMatrixGenerator(org.apache.sysml.runtime.matrix.data.RandomMatrixGenerator.PDF pdf, int r, int c, int rpb, int cpb, double sp, double min, double max)
pdf
- probability density functionr
- number of rowsc
- number of columnsrpb
- rows per blockcpb
- columns per blocksp
- sparsity (0 = completely sparse, 1 = completely dense)min
- minimum of range of random numbersmax
- maximum of range of random numberspublic RandomMatrixGenerator(org.apache.sysml.runtime.matrix.data.RandomMatrixGenerator.PDF pdf, int r, int c, int rpb, int cpb, double sp, double min, double max, double mean)
pdf
- probability density functionr
- number of rowsc
- number of columnsrpb
- rows per blockcpb
- columns per blocksp
- sparsity (0 = completely sparse, 1 = completely dense)min
- minimum of range of random numbersmax
- maximum of range of random numbersmean
- the poisson meanpublic void init(org.apache.sysml.runtime.matrix.data.RandomMatrixGenerator.PDF pdf, int r, int c, int rpb, int cpb, double sp, double min, double max)
pdf
- probability density functionr
- number of rowsc
- number of columnsrpb
- rows per blockcpb
- columns per blocksp
- sparsity (0 = completely sparse, 1 = completely dense)min
- minimum of range of random numbersmax
- maximum of range of random numberspublic void init(org.apache.sysml.runtime.matrix.data.RandomMatrixGenerator.PDF pdf, int r, int c, int rpb, int cpb, double sp, double min, double max, double mean)
pdf
- probability density functionr
- number of rowsc
- number of columnsrpb
- rows per blockcpb
- columns per blocksp
- sparsity (0 = completely sparse, 1 = completely dense)min
- minimum of range of random numbersmax
- maximum of range of random numbersmean
- the poisson meanprotected void setupValuePRNG()
Copyright © 2018 The Apache Software Foundation. All rights reserved.