mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-08-21 16:23:46 +08:00
d9d57e5d6f
* Revert "Replace ThneedModel with TinygradModel (#33532)" This reverts commitda952e9b64. * Revert "camerad: move E + D cams image pipelines to the IFE (#33959)" This reverts commitf2a1cce42b.
18 lines
443 B
C++
18 lines
443 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "selfdrive/modeld/runners/runmodel.h"
|
|
#include "selfdrive/modeld/thneed/thneed.h"
|
|
|
|
class ThneedModel : public RunModel {
|
|
public:
|
|
ThneedModel(const std::string path, float *_output, size_t _output_size, int runtime, bool use_tf8 = false, cl_context context = NULL);
|
|
void *getCLBuffer(const std::string name);
|
|
void execute();
|
|
private:
|
|
Thneed *thneed = NULL;
|
|
bool recorded;
|
|
float *output;
|
|
};
|