mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-03-02 20:43:53 +08:00
15 lines
201 B
C
15 lines
201 B
C
#ifndef RUN_H
|
|
#define RUN_H
|
|
|
|
#include "runmodel.h"
|
|
#include "snpemodel.h"
|
|
|
|
#ifdef QCOM
|
|
#define DefaultRunModel SNPEModel
|
|
#else
|
|
#include "tfmodel.h"
|
|
#define DefaultRunModel TFModel
|
|
#endif
|
|
|
|
#endif
|