forked from 1chipML/1chipML
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1chipml.h
32 lines (29 loc) · 1.11 KB
/
1chipml.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* ***************************************************** *
* First author : Jean Michel Sellier *
* Company : GAIA, Ericsson, Montreal, Canada *
* Contacts : [email protected], *
* Ext. contributors: n.a. *
* Created : 01 Apr. 2021, Montreal, QC, Canada *
* Last modified : 23 Mar. 2022, Montreal, QC, Canada *
* Description : 1chipML *
* License : Apache 2 *
* ***************************************************** */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
/* Include 1chipML methods below */
#include "./DFT.h"
#include "./FFT.h"
#include "./fast_sincos.h"
#include "./finite_difference.h"
#include "./gauss_elimination.h"
#include "./genetic.h"
#include "./gradient_descent.h"
#include "./jacobi.h"
#include "./lanczos.h"
#include "./linear_congruential_random_generator.h"
#include "./lu_decomposition.h"
#include "./poly_interpolation.h"
#include "./stats.h"
/* -- End of file -- */