Model.cpp 159 Bytes
Newer Older
mayong's avatar
mayong committed
1
2
#include "precomp.h"

mayong's avatar
mayong committed
3
Model *create_model(const char *path,int nThread)
mayong's avatar
mayong committed
4
5
6
7
{
    Model *mm;


mayong's avatar
mayong committed
8
    mm = new paraformer::ModelImp(path, nThread);
mayong's avatar
mayong committed
9
10
11

    return mm;
}