mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-20 09:03:55 +08:00
19 lines
282 B
C
19 lines
282 B
C
#ifndef RUN_H
|
|
#define RUN_H
|
|
|
|
#include "runmodel.h"
|
|
#include "snpemodel.h"
|
|
|
|
#ifdef QCOM
|
|
#define DefaultRunModel SNPEModel
|
|
#else
|
|
#ifdef USE_TF_MODEL
|
|
#include "tfmodel.h"
|
|
#define DefaultRunModel TFModel
|
|
#else
|
|
#define DefaultRunModel SNPEModel
|
|
#endif
|
|
#endif
|
|
|
|
#endif
|