Files
dragonpilot/selfdrive/visiond/runners/run.h
Vehicle Researcher 7b469bc8be openpilot v0.6 release
2019-06-28 21:11:30 +00:00

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