mirror of
https://github.com/modelscope/FunASR
synced 2025-09-15 14:48:36 +08:00
53 lines
887 B
C++
53 lines
887 B
C++
#pragma once
|
|
// system
|
|
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include <deque>
|
|
#include <iostream>
|
|
#include <fstream>
|
|
#include <sstream>
|
|
#include <iterator>
|
|
#include <list>
|
|
#include <locale.h>
|
|
#include <vector>
|
|
#include <string>
|
|
#include <math.h>
|
|
#include <numeric>
|
|
|
|
|
|
#include <cstring>
|
|
|
|
using namespace std;
|
|
// third part
|
|
|
|
#include <fftw3.h>
|
|
#include "onnxruntime_run_options_config_keys.h"
|
|
#include "onnxruntime_cxx_api.h"
|
|
|
|
|
|
// mine
|
|
|
|
#include "commonfunc.h"
|
|
#include <ComDefine.h>
|
|
#include "predefine_coe.h"
|
|
|
|
#include <ComDefine.h>
|
|
//#include "alignedmem.h"
|
|
#include "Vocab.h"
|
|
#include "Tensor.h"
|
|
#include "util.h"
|
|
#include "CommonStruct.h"
|
|
#include "FeatureExtract.h"
|
|
#include "FeatureQueue.h"
|
|
#include "SpeechWrap.h"
|
|
#include <Audio.h>
|
|
#include "Model.h"
|
|
#include "paraformer_onnx.h"
|
|
#include "libfunasrapi.h"
|
|
|
|
|
|
using namespace paraformer;
|