Home
last modified time | relevance | path

Searched refs:tflite_methods (Results 1 – 2 of 2) sorted by relevance

/hardware/google/pixel/thermal/virtualtemp_estimator/
Dvirtualtemp_estimator_data.h96 tflite_methods.create = nullptr; in VtEstimatorTFLiteData()
97 tflite_methods.init = nullptr; in VtEstimatorTFLiteData()
98 tflite_methods.get_input_config_size = nullptr; in VtEstimatorTFLiteData()
99 tflite_methods.get_input_config = nullptr; in VtEstimatorTFLiteData()
100 tflite_methods.invoke = nullptr; in VtEstimatorTFLiteData()
101 tflite_methods.destroy = nullptr; in VtEstimatorTFLiteData()
113 TFLiteWrapperMethods tflite_methods; member
124 if (tflite_wrapper && tflite_methods.destroy) { in ~VtEstimatorTFLiteData()
125 tflite_methods.destroy(tflite_wrapper); in ~VtEstimatorTFLiteData()
Dvirtualtemp_estimator.cpp90 std::unique_lock<std::mutex> lock(tflite_instance_->tflite_methods.mutex); in DumpTraces()
144 std::unique_lock<std::mutex> lock(tflite_instance_->tflite_methods.mutex); in LoadTFLiteWrapper()
152 tflite_instance_->tflite_methods.create = in LoadTFLiteWrapper()
154 if (!tflite_instance_->tflite_methods.create) { in LoadTFLiteWrapper()
158 tflite_instance_->tflite_methods.init = in LoadTFLiteWrapper()
160 if (!tflite_instance_->tflite_methods.init) { in LoadTFLiteWrapper()
164 tflite_instance_->tflite_methods.invoke = in LoadTFLiteWrapper()
166 if (!tflite_instance_->tflite_methods.invoke) { in LoadTFLiteWrapper()
170 tflite_instance_->tflite_methods.destroy = in LoadTFLiteWrapper()
172 if (!tflite_instance_->tflite_methods.destroy) { in LoadTFLiteWrapper()
[all …]