haoneng.lhn
2023-04-03 6be782d9fde7c6a490fbe4b3f22de3bfc7a69406
1
2
3
4
5
6
7
8
9
10
#include "precomp.h"
 
Model *create_model(const char *path, int nThread, bool quantize)
{
    Model *mm;
 
    mm = new paraformer::ModelImp(path, nThread, quantize);
 
    return mm;
}