hnluo
2023-04-13 5563b28a74d2058c1d7c0c79f816b9cc5eb5295a
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;
}