mirror of
https://github.com/infiniteCable2/openpilot.git
synced 2026-07-27 04:12:10 +08:00
510b718f0f
old-commit-hash: da079d47d7d9496723117700ae1bb51c1f1abc38
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
|