Make qsort input size more reasonable
[riscv-tests.git] / benchmarks / vec-cmplxmult / dataset_test.h
1
2 #define DATA_SIZE 4
3
4 struct Complex input1_data[DATA_SIZE] =
5 {
6 {0.37, 4.09},
7 {5.09, 0.02},
8 {6.75, 3.30},
9 {1.19, 0.58}
10 };
11
12 struct Complex input2_data[DATA_SIZE] =
13 {
14 {7.51, 3.02},
15 {1.69, 8.91},
16 {3.16, 5.16},
17 {8.56, 1.38}
18 };
19
20 struct Complex verify_data[DATA_SIZE] =
21 {
22 {-9.55, 31.87},
23 {8.45, 45.39},
24 {4.34, 45.27},
25 {9.41, 6.59}
26 };
27