Files
openpilot-evo/selfdrive/modeld/runners/runmodel.h
T
George Hotz 510b718f0f logcatd, loggerd, mapd, modeld, proclogd
old-commit-hash: da079d47d7d9496723117700ae1bb51c1f1abc38
2020-01-17 11:20:17 -08:00

13 lines
243 B
C++

#ifndef RUNMODEL_H
#define RUNMODEL_H
class RunModel {
public:
virtual void addRecurrent(float *state, int state_size) {}
virtual void addDesire(float *state, int state_size) {}
virtual void execute(float *net_input_buf) {}
};
#endif