Exemple #1
0
 public SIMDTest()
 {
     vector_int    = MatrixPreparator.RandomVectorInt(matrx1DLeanth);
     vector_float  = MatrixPreparator.RandomVectorFloat(matrx1DLeanth);
     vector_double = MatrixPreparator.RandomVectorDouble(matrx1DLeanth);
 }
Exemple #2
0
 public MatrixMultiplyTest()
 {
     matrix1      = MatrixPreparator.RandomMatrixDoble2D(matrxLeanth, matrxLeanth);
     matrix2      = MatrixPreparator.RandomMatrixDoble2D(matrxLeanth, matrxLeanth);
     matrixResult = new double[matrxLeanth, matrxLeanth];
 }