1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
|
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/segmentation_platform/internal/execution/model_executor_impl.h"
#include <memory>
#include <optional>
#include "base/functional/callback.h"
#include "base/logging.h"
#include "base/memory/raw_ref.h"
#include "base/time/clock.h"
#include "base/time/time.h"
#include "base/trace_event/typed_macros.h"
#include "components/segmentation_platform/internal/database/segment_info_database.h"
#include "components/segmentation_platform/internal/execution/execution_request.h"
#include "components/segmentation_platform/internal/execution/processing/feature_list_query_processor.h"
#include "components/segmentation_platform/internal/segmentation_ukm_helper.h"
#include "components/segmentation_platform/internal/stats.h"
#include "components/segmentation_platform/public/model_provider.h"
#include "components/segmentation_platform/public/proto/model_metadata.pb.h"
#include "components/segmentation_platform/public/proto/segmentation_platform.pb.h"
#include "third_party/perfetto/include/perfetto/tracing/track.h"
namespace segmentation_platform {
namespace {
using processing::FeatureListQueryProcessor;
using proto::SegmentId;
} // namespace
struct ModelExecutorImpl::ModelExecutionTraceEvent {
ModelExecutionTraceEvent(const char* event_name,
const ModelExecutorImpl::ExecutionState& state);
~ModelExecutionTraceEvent();
const raw_ref<const ModelExecutorImpl::ExecutionState> state;
};
struct ModelExecutorImpl::ExecutionState {
ExecutionState()
: trace_event(std::make_unique<ModelExecutionTraceEvent>(
"ModelExecutorImpl::ExecutionState",
*this)) {}
~ExecutionState() {
trace_event.reset();
// Emit another event to ensure that the event emitted by resetting
// trace_event can be scraped by the tracing service (crbug.com/1021571).
TRACE_EVENT_INSTANT("segmentation_platform",
"ModelExecutorImpl::~ExecutionState()");
}
// Disallow copy/assign.
ExecutionState(const ExecutionState&) = delete;
ExecutionState& operator=(const ExecutionState&) = delete;
// The top level event for all ExecuteModel calls is the ExecutionState
// trace event. This is std::unique_ptr to be able to easily reset it right
// before we emit an instant event at destruction time. If this is the last
// trace event for a thread, it will not be emitted. See
// https://crbug.com/1021571.
std::unique_ptr<ModelExecutionTraceEvent> trace_event;
SegmentId segment_id = SegmentId::OPTIMIZATION_TARGET_UNKNOWN;
proto::ModelSource model_source = proto::ModelSource::DEFAULT_MODEL_SOURCE;
int64_t model_version = 0;
// TODO(crbug.com/388510833): dangling when executing
// ShouldReportDegradedTrustedVaultRecoverabilityUponResolvedAuthError test.
raw_ptr<ModelProvider, DanglingUntriaged> model_provider = nullptr;
bool record_metrics_for_default = false;
ModelExecutionCallback callback;
ModelProvider::Request input_tensor;
base::Time total_execution_start_time;
base::Time model_execution_start_time;
bool upload_tensors;
};
ModelExecutorImpl::ModelExecutionTraceEvent::ModelExecutionTraceEvent(
const char* event_name,
const ModelExecutorImpl::ExecutionState& state)
: state(state) {
TRACE_EVENT_BEGIN("segmentation_platform", perfetto::StaticString(event_name),
perfetto::Track::FromPointer(&state));
}
ModelExecutorImpl::ModelExecutionTraceEvent::~ModelExecutionTraceEvent() {
TRACE_EVENT_END("segmentation_platform",
perfetto::Track::FromPointer(&*state));
}
ModelExecutorImpl::ModelExecutorImpl(
base::Clock* clock,
SegmentInfoDatabase* segment_db,
processing::FeatureListQueryProcessor* feature_list_query_processor)
: clock_(clock),
segment_db_(segment_db),
feature_list_query_processor_(feature_list_query_processor) {}
ModelExecutorImpl::~ModelExecutorImpl() = default;
void ModelExecutorImpl::ExecuteModel(
std::unique_ptr<ExecutionRequest> request) {
DCHECK_NE(request->segment_id, SegmentId::OPTIMIZATION_TARGET_UNKNOWN);
DCHECK_NE(request->model_source, ModelSource::UNKNOWN_MODEL_SOURCE);
const proto::SegmentInfo* segment_info = segment_db_->GetCachedSegmentInfo(
request->segment_id, request->model_source);
SegmentId segment_id = request->segment_id;
// Create an ExecutionState that will stay with this request until it has been
// fully processed.
auto state = std::make_unique<ExecutionState>();
state->segment_id = request->segment_id;
state->model_source = request->model_source;
state->model_version = segment_info->model_version();
state->model_provider = request->model_provider;
state->record_metrics_for_default =
request->model_source == ModelSource::DEFAULT_MODEL_SOURCE;
state->callback = std::move(request->callback);
state->total_execution_start_time = clock_->Now();
std::optional<ModelExecutionTraceEvent> trace_event =
ModelExecutionTraceEvent("ModelExecutorImpl::ExecuteModel", *state);
if (!segment_info || !request->model_provider ||
!request->model_provider->ModelAvailable()) {
RunModelExecutionCallback(*state, std::move(state->callback),
std::make_unique<ModelExecutionResult>(
ModelExecutionStatus::kSkippedModelNotReady));
return;
}
// It is required to have a valid and well formed segment info.
if (metadata_utils::ValidateSegmentInfo(*segment_info) !=
metadata_utils::ValidationResult::kValidationSuccess) {
RunModelExecutionCallback(
*state, std::move(state->callback),
std::make_unique<ModelExecutionResult>(
ModelExecutionStatus::kSkippedInvalidMetadata));
return;
}
base::Time prediction_time = clock_->Now();
if (segment_info->model_metadata().has_fixed_prediction_timestamp() &&
segment_info->model_metadata().fixed_prediction_timestamp() > 0) {
prediction_time = base::Time::FromDeltaSinceWindowsEpoch(base::Microseconds(
segment_info->model_metadata().fixed_prediction_timestamp()));
}
state->upload_tensors =
SegmentationUkmHelper::GetInstance()->IsUploadRequested(*segment_info);
trace_event.reset();
feature_list_query_processor_->ProcessFeatureList(
segment_info->model_metadata(), request->input_context, segment_id,
prediction_time, base::Time(),
FeatureListQueryProcessor::ProcessOption::kInputsOnly,
base::BindOnce(&ModelExecutorImpl::OnProcessingFeatureListComplete,
weak_ptr_factory_.GetWeakPtr(), std::move(state)));
}
void ModelExecutorImpl::OnProcessingFeatureListComplete(
std::unique_ptr<ExecutionState> state,
bool error,
const ModelProvider::Request& input_tensor,
const ModelProvider::Response& output_tensor) {
if (error) {
// Validation error occurred on model's metadata.
RunModelExecutionCallback(
*state, std::move(state->callback),
std::make_unique<ModelExecutionResult>(
ModelExecutionStatus::kSkippedInvalidMetadata));
return;
}
state->input_tensor.insert(state->input_tensor.end(), input_tensor.begin(),
input_tensor.end());
ExecuteModel(std::move(state));
}
void ModelExecutorImpl::ExecuteModel(std::unique_ptr<ExecutionState> state) {
std::optional<ModelExecutionTraceEvent> trace_event =
ModelExecutionTraceEvent("ModelExecutorImpl::ExecuteModel", *state);
if (VLOG_IS_ON(1)) {
std::stringstream log_input;
for (unsigned i = 0; i < state->input_tensor.size(); ++i) {
log_input << " feature " << i << ": " << state->input_tensor[i];
}
VLOG(1) << "Segmentation model input: " << log_input.str()
<< " for segment " << proto::SegmentId_Name(state->segment_id);
}
const ModelProvider::Request& const_input_tensor = state->input_tensor;
stats::RecordModelExecutionZeroValuePercent(state->segment_id,
const_input_tensor);
state->model_execution_start_time = clock_->Now();
ModelProvider* model = state->model_provider;
trace_event.reset();
model->ExecuteModelWithInput(
const_input_tensor,
base::BindOnce(&ModelExecutorImpl::OnModelExecutionComplete,
weak_ptr_factory_.GetWeakPtr(), std::move(state)));
}
void ModelExecutorImpl::OnModelExecutionComplete(
std::unique_ptr<ExecutionState> state,
const std::optional<ModelProvider::Response>& result) {
ModelExecutionTraceEvent trace_event(
"ModelExecutorImpl::OnModelExecutionComplete", *state);
stats::RecordModelExecutionDurationModel(
state->segment_id, result.has_value(),
clock_->Now() - state->model_execution_start_time);
if (result.has_value() && result.value().size() > 0) {
if (VLOG_IS_ON(1)) {
std::stringstream log_output;
for (unsigned i = 0; i < result.value().size(); ++i) {
log_output << " output " << i << ": " << result.value().at(i);
}
VLOG(1) << "Segmentation model result: " << log_output.str()
<< " for segment " << proto::SegmentId_Name(state->segment_id);
}
const SegmentInfo* latest_info = segment_db_->GetCachedSegmentInfo(
state->segment_id, state->model_source);
// The version could have changed if new model is downloaded during
// execution, or if the model was deleted.
if (!latest_info || latest_info->model_version() != state->model_version) {
VLOG(1) << "Segmentation model was updated during execution "
<< proto::SegmentId_Name(state->segment_id);
RunModelExecutionCallback(
*state, std::move(state->callback),
std::make_unique<ModelExecutionResult>(
ModelExecutionStatus::kSkippedModelNotReady));
return;
}
const proto::SegmentationModelMetadata& model_metadata =
latest_info->model_metadata();
if (model_metadata.has_output_config()) {
stats::RecordModelExecutionResult(state->segment_id, result.value(),
model_metadata.output_config());
} else {
stats::RecordModelExecutionResult(state->segment_id, result.value().at(0),
model_metadata.return_type());
}
base::TimeDelta signal_storage_length =
model_metadata.signal_storage_length() *
metadata_utils::GetTimeUnit(model_metadata);
if (state->model_version &&
state->model_source == proto::ModelSource::SERVER_MODEL_SOURCE &&
SegmentationUkmHelper::AllowedToUploadData(signal_storage_length,
clock_)) {
if (state->upload_tensors) {
SegmentationUkmHelper::GetInstance()->RecordModelExecutionResult(
state->segment_id, state->model_version, state->input_tensor,
result.value());
}
}
ModelProvider::Request input_tensor = state->input_tensor;
RunModelExecutionCallback(*state, std::move(state->callback),
std::make_unique<ModelExecutionResult>(
std::move(input_tensor), *result));
} else {
VLOG(1) << "Segmentation model returned no result for segment "
<< proto::SegmentId_Name(state->segment_id);
RunModelExecutionCallback(*state, std::move(state->callback),
std::make_unique<ModelExecutionResult>(
ModelExecutionStatus::kExecutionError));
}
}
void ModelExecutorImpl::RunModelExecutionCallback(
const ExecutionState& state,
ModelExecutionCallback callback,
std::unique_ptr<ModelExecutionResult> result) {
stats::RecordModelExecutionDurationTotal(
state.segment_id, result->status,
clock_->Now() - state.total_execution_start_time);
stats::RecordModelExecutionStatus(
state.segment_id, state.record_metrics_for_default, result->status);
std::move(callback).Run(std::move(result));
}
} // namespace segmentation_platform
|