OSDN Git Service

5cf4de868073ac13f064cca4f2927cf745e607c2
[libbfin32/algorithm_vector.git] / algorithm_vector / main.c
1 /*
2  * main.c
3  *
4  *  Created on: 2013/05/02
5  *      Author: takemasa
6  */
7
8
9 #include "fx32_vector.h"
10 #include <limits.h>
11 #include <stdio.h>
12
13
14
15
16
17 int main()
18 {
19
20     test_01_fr32_vector_add();
21     test_02_fr32_vector_add_svv();
22     test_03_fr32_vector_sub();
23     test_04_fr32_vector_sub_svv();
24     test_05_fr32_vector_mul();
25     test_06_fr32_vector_mul_svv();
26     test_07_fr32_vector_complex_mul();
27     test_08_fr32_vector_neg();
28
29
30
31     return 0;
32 }