precomp.h 734 Bytes
Newer Older
mayong's avatar
mayong committed
1
2
#pragma once 
// system 
Daniel's avatar
Daniel committed
3

mayong's avatar
mayong committed
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <iostream>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <deque>
#include <iostream>
#include <list>
#include <locale.h>
#include <vector>
#include <string>
#include <math.h>
#include <numeric>


Daniel's avatar
Daniel committed
19
20
#include <cstring>

mayong's avatar
mayong committed
21
22
23
24
25
26
27
28
29
using namespace std;
// third part

#include <fftw3.h>
#include "onnxruntime_run_options_config_keys.h"
#include "onnxruntime_cxx_api.h"


// mine
Daniel's avatar
Daniel committed
30

mayong's avatar
mayong committed
31
32
33
34
#include "commonfunc.h"
#include <ComDefine.h>
#include "predefine_coe.h"

Daniel's avatar
Daniel committed
35
#include "alignedmem.h"
mayong's avatar
mayong committed
36
37
38
39
40
41
42
43
44
45
#include "Vocab.h"
#include "util.h"
#include "CommonStruct.h"
#include "FeatureExtract.h"
#include "SpeechWrap.h"
#include "Model.h"
#include "paraformer_onnx.h"



Daniel's avatar
Daniel committed
46
using namespace paraformer;