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