Home
last modified time | relevance | path

Searched refs:vt_estimator (Results 1 – 3 of 3) sorted by relevance

/hardware/google/pixel/thermal/
Dthermal-helper.cpp140 if (sensor_info.virtual_sensor_info->vt_estimator) { in dumpTraces()
141 sensor_info.virtual_sensor_info->vt_estimator->DumpTraces(); in dumpTraces()
348 predictor_sensor_info.virtual_sensor_info->vt_estimator == nullptr) { in ThermalHelperImpl()
359 predictor_sensor_info.virtual_sensor_info->vt_estimator->GetAllPredictions( in ThermalHelperImpl()
1220 sensor_info.virtual_sensor_info->vt_estimator == nullptr) { in runVirtualTempEstimator()
1245 sensor_info.virtual_sensor_info->vt_estimator->Estimate(model_inputs, &model_outputs); in runVirtualTempEstimator()
1290 sensor_info.virtual_sensor_info->vt_estimator == nullptr) { in dumpVtEstimatorStatus()
1294 sensor_info.virtual_sensor_info->vt_estimator->DumpStatus(sensor_name, dump_buf); in dumpVtEstimatorStatus()
1312 predictor_sensor_info.virtual_sensor_info->vt_estimator->GetMaxPredictWindowMs( in getPredictionMaxWindowMs()
1340 predictor_sensor_info.virtual_sensor_info->vt_estimator->PredictAfterTimeMs( in readPredictionAfterTimeMs()
[all …]
/hardware/google/pixel/thermal/utils/
Dthermal_info.cpp343 std::unique_ptr<::thermal::vtestimator::VirtualTempEstimator> vt_estimator; in ParseVirtualSensorInfo() local
501 vt_estimator = std::make_unique<::thermal::vtestimator::VirtualTempEstimator>( in ParseVirtualSensorInfo()
503 if (!vt_estimator) { in ParseVirtualSensorInfo()
547 ::thermal::vtestimator::VtEstimatorStatus ret = vt_estimator->Initialize(init_data); in ParseVirtualSensorInfo()
570 vt_estimator = std::make_unique<::thermal::vtestimator::VirtualTempEstimator>( in ParseVirtualSensorInfo()
572 if (!vt_estimator) { in ParseVirtualSensorInfo()
600 ::thermal::vtestimator::VtEstimatorStatus ret = vt_estimator->Initialize(init_data); in ParseVirtualSensorInfo()
614 vt_estimator_model_file, std::move(vt_estimator), backup_sensor}); in ParseVirtualSensorInfo()
Dthermal_info.h152 std::unique_ptr<::thermal::vtestimator::VirtualTempEstimator> vt_estimator; member