From 7bfc4a84fc2d882f34928a033a6d5b60ff72fe19 Mon Sep 17 00:00:00 2001
From: lyblsgo <lyblsgo@163.com>
Date: 星期五, 21 四月 2023 10:53:50 +0800
Subject: [PATCH] rm fftw deps
---
funasr/runtime/onnxruntime/tester/tester_rtf.cpp | 104 ++++++++++++++++++++++++++++++++++++++++++----------
1 files changed, 84 insertions(+), 20 deletions(-)
diff --git a/funasr/runtime/onnxruntime/tester/tester_rtf.cpp b/funasr/runtime/onnxruntime/tester/tester_rtf.cpp
index 131ca64..793a33a 100644
--- a/funasr/runtime/onnxruntime/tester/tester_rtf.cpp
+++ b/funasr/runtime/onnxruntime/tester/tester_rtf.cpp
@@ -5,27 +5,73 @@
#include <win_func.h>
#endif
-#include "librapidasrapi.h"
+#include "libfunasrapi.h"
#include <iostream>
#include <fstream>
#include <sstream>
#include <vector>
+#include <atomic>
+#include <mutex>
#include <thread>
using namespace std;
-void runReg(vector<string> wav_list, RPASR_HANDLE AsrHanlde)
-{
- for (size_t i = 0; i < wav_list.size(); i++)
+std::atomic<int> index(0);
+std::mutex mtx;
+
+void runReg(FUNASR_HANDLE AsrHandle, vector<string> wav_list,
+ float* total_length, long* total_time, int core_id) {
+
+ // cpu_set_t cpuset;
+ // CPU_ZERO(&cpuset);
+ // CPU_SET(core_id, &cpuset);
+ // if(pthread_setaffinity_np(pthread_self(), sizeof(cpu_set_t), &cpuset) < 0){
+ // perror("pthread_setaffinity_np");
+ // }
+
+ struct timeval start, end;
+ long seconds = 0;
+ float n_total_length = 0.0f;
+ long n_total_time = 0;
+
+ // warm up
+ for (size_t i = 0; i < 1; i++)
{
- RPASR_RESULT Result=RapidAsrRecogFile(AsrHanlde, wav_list[i].c_str(), RASR_NONE, NULL);
+ FUNASR_RESULT Result=FunASRRecogFile(AsrHandle, wav_list[0].c_str(), RASR_NONE, NULL);
+ }
+
+ while (true) {
+ // 浣跨敤鍘熷瓙鍙橀噺鑾峰彇绱㈠紩骞堕�掑
+ int i = index.fetch_add(1);
+ if (i >= wav_list.size()) {
+ break;
+ }
+
+ gettimeofday(&start, NULL);
+ FUNASR_RESULT Result=FunASRRecogFile(AsrHandle, wav_list[i].c_str(), RASR_NONE, NULL);
+
+ gettimeofday(&end, NULL);
+ seconds = (end.tv_sec - start.tv_sec);
+ long taking_micros = ((seconds * 1000000) + end.tv_usec) - (start.tv_usec);
+ n_total_time += taking_micros;
if(Result){
- string msg = RapidAsrGetResult(Result, 0);
- printf("Result: %s \n", msg.c_str());
- RapidAsrFreeResult(Result);
+ string msg = FunASRGetResult(Result, 0);
+ printf("Thread: %d Result: %s \n", this_thread::get_id(), msg.c_str());
+
+ float snippet_time = FunASRGetRetSnippetTime(Result);
+ n_total_length += snippet_time;
+ FunASRFreeResult(Result);
}else{
cout <<"No return data!";
+ }
+
+ }
+ {
+ lock_guard<mutex> guard(mtx);
+ *total_length += n_total_length;
+ if(*total_time < n_total_time){
+ *total_time = n_total_time;
}
}
}
@@ -33,9 +79,9 @@
int main(int argc, char *argv[])
{
- if (argc < 4)
+ if (argc < 5)
{
- printf("Usage: %s /path/to/model_dir /path/to/wav.scp quantize(true or false) \n", argv[0]);
+ printf("Usage: %s /path/to/model_dir /path/to/wav.scp quantize(true or false) nThreadNum \n", argv[0]);
exit(-1);
}
@@ -59,26 +105,44 @@
// model init
struct timeval start, end;
gettimeofday(&start, NULL);
- int nThreadNum = 1;
// is quantize
bool quantize = false;
istringstream(argv[3]) >> boolalpha >> quantize;
+ // thread num
+ int nThreadNum = 1;
+ nThreadNum = atoi(argv[4]);
- RPASR_HANDLE AsrHanlde=RapidAsrInit(argv[1], nThreadNum, quantize);
- if (!AsrHanlde)
+ FUNASR_HANDLE AsrHandle=FunASRInit(argv[1], 1, quantize);
+ if (!AsrHandle)
{
printf("Cannot load ASR Model from: %s, there must be files model.onnx and vocab.txt", argv[1]);
exit(-1);
}
-
- std::thread t1(runReg, wav_list, AsrHanlde);
- std::thread t2(runReg, wav_list, AsrHanlde);
+ gettimeofday(&end, NULL);
+ long seconds = (end.tv_sec - start.tv_sec);
+ long modle_init_micros = ((seconds * 1000000) + end.tv_usec) - (start.tv_usec);
+ printf("Model initialization takes %lfs.\n", (double)modle_init_micros / 1000000);
- t1.join();
- t2.join();
+ // 澶氱嚎绋嬫祴璇�
+ float total_length = 0.0f;
+ long total_time = 0;
+ std::vector<std::thread> threads;
- //runReg(wav_list, AsrHanlde);
+ for (int i = 0; i < nThreadNum; i++)
+ {
+ threads.emplace_back(thread(runReg, AsrHandle, wav_list, &total_length, &total_time, i));
+ }
- RapidAsrUninit(AsrHanlde);
+ for (auto& thread : threads)
+ {
+ thread.join();
+ }
+
+ printf("total_time_wav %ld ms.\n", (long)(total_length * 1000));
+ printf("total_time_comput %ld ms.\n", total_time / 1000);
+ printf("total_rtf %05lf .\n", (double)total_time/ (total_length*1000000));
+ printf("speedup %05lf .\n", 1.0/((double)total_time/ (total_length*1000000)));
+
+ FunASRUninit(AsrHandle);
return 0;
}
--
Gitblit v1.9.1