funasr/runtime/onnxruntime/src/Model.cpp
@@ -1,11 +1,10 @@ #include "precomp.h" Model *create_model(const char *path,int nThread) Model *create_model(const char *path, int nThread, bool quantize) { Model *mm; mm = new paraformer::ModelImp(path, nThread); mm = new paraformer::ModelImp(path, nThread, quantize); return mm; }