mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-06-25 03:22:07 +08:00
510b718f0f
old-commit-hash: da079d47d7
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
|