Spaces:
Running
Running
File size: 33,058 Bytes
5f923cd | 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 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 | // Copyright 2025 The ODML Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// ODML pipeline to execute or benchmark LLM graph on device.
//
// The pipeline does the following
// 1) Read the corresponding parameters, weight and model file paths.
// 2) Construct a graph model with the setting.
// 3) Execute model inference and generate the output.
//
// Consider run_llm_inference_engine.sh as an example to run on android device.
#include "runtime/engine/litert_lm_lib.h"
#include <cstdint>
#include <filesystem> // NOLINT
#include <iostream>
#include <memory>
#include <optional>
#include <sstream>
#include <string>
#include <utility>
#include <variant>
#include <vector>
#include "absl/functional/any_invocable.h" // from @com_google_absl
#include "absl/log/absl_check.h" // from @com_google_absl
#include "absl/log/absl_log.h" // from @com_google_absl
#include "absl/log/log_sink_registry.h" // from @com_google_absl
#include "absl/status/status.h" // from @com_google_absl
#include "absl/status/statusor.h" // from @com_google_absl
#include "absl/strings/match.h" // from @com_google_absl
#include "absl/strings/str_cat.h" // from @com_google_absl
#include "absl/strings/str_format.h" // from @com_google_absl
#include "absl/strings/string_view.h" // from @com_google_absl
#include "absl/time/time.h" // from @com_google_absl
#include "nlohmann/json.hpp" // from @nlohmann_json
#include "litert/cc/internal/scoped_file.h" // from @litert
#include "runtime/components/constrained_decoding/constraint.h"
#include "runtime/components/constrained_decoding/constraint_provider_factory.h"
#include "runtime/components/constrained_decoding/llg_constraint_config.h"
#include "runtime/components/tokenizer.h"
#include "runtime/conversation/conversation.h"
#include "runtime/conversation/io_types.h"
#include "runtime/engine/engine.h"
#include "runtime/engine/engine_factory.h"
#include "runtime/engine/engine_settings.h"
#include "runtime/engine/io_types.h"
#include "runtime/executor/executor_settings_base.h"
#include "runtime/executor/llm_executor_settings.h"
#include "runtime/proto/sampler_params.pb.h"
#include "runtime/util/scoped_file.h"
#include "runtime/util/status_macros.h" // NOLINT
#include "re2/re2.h" // from @com_googlesource_code_re2
#include "tflite/profiling/memory_info.h" // from @litert
#include "tflite/profiling/memory_usage_monitor.h" // from @litert
namespace litert {
namespace lm {
using ::litert::ScopedFile;
using ::litert::lm::Backend;
using ::litert::lm::Engine;
using ::litert::lm::EngineSettings;
using ::litert::lm::InputData;
using ::litert::lm::InputText;
using ::litert::lm::JsonMessage;
using ::litert::lm::LlmExecutorSettings;
using ::litert::lm::Message;
using ::litert::lm::ModelAssets;
using ::nlohmann::json;
// Memory check interval in milliseconds.
constexpr int kMemoryCheckIntervalMs = 50;
// Timeout duration for waiting until the engine is done with all the tasks.
const absl::Duration kWaitUntilDoneTimeout = absl::Minutes(10);
namespace {
// Creates the ModelAssets from the LiteRtLmSettings.
absl::StatusOr<ModelAssets> CreateModelAssets(
const LiteRtLmSettings& settings) {
if (settings.model_path.empty()) {
return absl::InvalidArgumentError("Model path is empty.");
}
ABSL_LOG(INFO) << "Model path: " << settings.model_path;
if (!settings.load_model_from_descriptor) {
return ModelAssets::Create(settings.model_path);
}
ASSIGN_OR_RETURN(auto scoped_file, ScopedFile::Open(settings.model_path));
return ModelAssets::Create(
std::make_shared<ScopedFile>(std::move(scoped_file)));
}
// Helper to process the sampler backend string and return a sampler backend
// if possible. Otherwise, return std::nullopt.
std::optional<Backend> GetSamplerBackend(const LiteRtLmSettings& settings) {
const std::string& sampler_backend_str = settings.sampler_backend;
if (sampler_backend_str.empty()) {
return std::nullopt;
}
const absl::StatusOr<Backend> sampler_backend =
GetBackendFromString(sampler_backend_str);
if (!sampler_backend.ok()) {
ABSL_LOG(WARNING) << "Ignore invalid sampler backend string: "
<< sampler_backend.status();
return std::nullopt;
}
return *sampler_backend;
}
// Creates the EngineSettings from the LiteRtLmSettings.
absl::StatusOr<EngineSettings> CreateEngineSettings(
const LiteRtLmSettings& settings) {
ASSIGN_OR_RETURN(ModelAssets model_assets, CreateModelAssets(settings));
auto backend_str = settings.backend;
ABSL_LOG(INFO) << "Choose backend: " << backend_str;
ASSIGN_OR_RETURN(Backend backend,
litert::lm::GetBackendFromString(backend_str));
std::optional<Backend> vision_backend = std::nullopt;
if (settings.vision_backend.has_value()) {
ABSL_LOG(INFO) << "Provided vision backend: " << *settings.vision_backend;
ASSIGN_OR_RETURN(vision_backend, litert::lm::GetBackendFromString(
*settings.vision_backend));
}
std::optional<Backend> audio_backend = std::nullopt;
if (settings.audio_backend.has_value()) {
ABSL_LOG(INFO) << "Provided audio backend: " << *settings.audio_backend;
ASSIGN_OR_RETURN(audio_backend,
litert::lm::GetBackendFromString(*settings.audio_backend));
}
ASSIGN_OR_RETURN(
EngineSettings engine_settings,
EngineSettings::CreateDefault(std::move(model_assets), backend,
vision_backend, audio_backend));
if (settings.max_num_tokens > 0) {
engine_settings.GetMutableMainExecutorSettings().SetMaxNumTokens(
settings.max_num_tokens);
}
if (settings.force_f32) {
engine_settings.GetMutableMainExecutorSettings().SetActivationDataType(
litert::lm::ActivationDataType::FLOAT32);
if (settings.vision_backend.has_value()) {
engine_settings.GetMutableVisionExecutorSettings()->SetActivationDataType(
litert::lm::ActivationDataType::FLOAT32);
}
if (settings.audio_backend.has_value()) {
engine_settings.GetMutableAudioExecutorSettings()->SetActivationDataType(
litert::lm::ActivationDataType::FLOAT32);
}
}
if (settings.disable_cache) {
engine_settings.GetMutableMainExecutorSettings().SetCacheDir(":nocache");
if (settings.vision_backend.has_value()) {
engine_settings.GetMutableVisionExecutorSettings()->SetCacheDir(
":nocache");
}
if (settings.audio_backend.has_value()) {
engine_settings.GetMutableAudioExecutorSettings()->SetCacheDir(
":nocache");
}
} else if (!settings.cache_dir.empty()) {
engine_settings.GetMutableMainExecutorSettings().SetCacheDir(
settings.cache_dir);
if (settings.vision_backend.has_value()) {
engine_settings.GetMutableVisionExecutorSettings()->SetCacheDir(
settings.cache_dir);
}
if (settings.audio_backend.has_value()) {
engine_settings.GetMutableAudioExecutorSettings()->SetCacheDir(
settings.cache_dir);
}
}
if (!settings.litert_dispatch_lib_dir.empty()) {
engine_settings.GetMutableMainExecutorSettings().SetLitertDispatchLibDir(
settings.litert_dispatch_lib_dir);
}
if (backend == Backend::CPU) {
auto& executor_settings = engine_settings.GetMutableMainExecutorSettings();
ASSIGN_OR_RETURN(
auto cpu_settings,
executor_settings.MutableBackendConfig<litert::lm::CpuConfig>());
if (settings.num_cpu_threads > 0) {
cpu_settings.number_of_threads = settings.num_cpu_threads;
}
cpu_settings.prefill_chunk_size = settings.prefill_chunk_size;
executor_settings.SetBackendConfig(cpu_settings);
}
if (backend == Backend::GPU) {
auto& executor_settings = engine_settings.GetMutableMainExecutorSettings();
ASSIGN_OR_RETURN(
auto gpu_settings,
executor_settings.MutableBackendConfig<litert::lm::GpuConfig>());
gpu_settings.external_tensor_mode = settings.gpu_external_tensor_mode;
executor_settings.SetBackendConfig(gpu_settings);
}
if (backend == Backend::GPU_ARTISAN) {
auto& executor_settings = engine_settings.GetMutableMainExecutorSettings();
executor_settings.SetMaxNumImages(settings.max_num_images);
ASSIGN_OR_RETURN(
auto gpu_artisan_settings,
executor_settings.MutableBackendConfig<litert::lm::GpuArtisanConfig>());
gpu_artisan_settings.use_submodel = settings.use_submodel;
executor_settings.SetBackendConfig(gpu_artisan_settings);
}
const std::optional<Backend> sampler_backend = GetSamplerBackend(settings);
if (sampler_backend.has_value()) {
engine_settings.GetMutableMainExecutorSettings().SetSamplerBackend(
*sampler_backend);
}
AdvancedSettings advanced_settings{
.prefill_batch_sizes = settings.prefill_batch_sizes,
.num_output_candidates = settings.num_output_candidates,
.configure_magic_numbers = settings.configure_magic_numbers,
.verify_magic_numbers = settings.verify_magic_numbers,
.clear_kv_cache_before_prefill = settings.clear_kv_cache_before_prefill,
.num_logits_to_print_after_decode =
static_cast<uint32_t>(settings.num_logits_to_print_after_decode),
.gpu_madvise_original_shared_tensors =
settings.gpu_madvise_original_shared_tensors,
.is_benchmark = settings.benchmark,
.preferred_device_substr = settings.preferred_device_substr,
.num_threads_to_upload = settings.num_threads_to_upload,
.num_threads_to_compile = settings.num_threads_to_compile,
.convert_weights_on_gpu = settings.convert_weights_on_gpu,
.wait_for_weights_conversion_complete_in_benchmark =
settings.wait_for_weights_conversion_complete_in_benchmark,
.optimize_shader_compilation = settings.optimize_shader_compilation,
.cache_compiled_shaders_only = settings.cache_compiled_shaders_only,
.share_constant_tensors = settings.share_constant_tensors,
.sampler_handles_input = settings.sampler_handles_input,
.enable_speculative_decoding = settings.enable_speculative_decoding,
};
if (settings.conv_type == ConvType::kFloat) {
advanced_settings.allow_src_quantized_fc_conv_ops = false;
} else if (settings.conv_type == ConvType::kInt8) {
advanced_settings.allow_src_quantized_fc_conv_ops = true;
}
if (advanced_settings != AdvancedSettings()) {
engine_settings.GetMutableMainExecutorSettings().SetAdvancedSettings(
advanced_settings);
}
ABSL_LOG(INFO) << "executor_settings: "
<< engine_settings.GetMainExecutorSettings();
if (engine_settings.GetVisionExecutorSettings().has_value()) {
ABSL_LOG(INFO) << "vision_executor_settings: "
<< engine_settings.GetVisionExecutorSettings().value();
} else {
ABSL_LOG(INFO) << "vision_executor_settings: not set";
}
if (engine_settings.GetAudioExecutorSettings().has_value()) {
ABSL_LOG(INFO) << "audio_executor_settings: "
<< engine_settings.GetAudioExecutorSettings().value();
} else {
ABSL_LOG(INFO) << "audio_executor_settings: not set";
}
if (settings.benchmark) {
if (settings.multi_turns && settings.async) {
// TODO(b/483699181) - Support benchmarking for multi-turns and async.
ABSL_LOG(ERROR) << "Benchmark with multi-turns and async do not show "
"results, use sync mode instead.";
}
litert::lm::proto::BenchmarkParams benchmark_params;
benchmark_params.set_num_prefill_tokens(settings.benchmark_prefill_tokens);
benchmark_params.set_num_decode_tokens(settings.benchmark_decode_tokens);
engine_settings.GetMutableBenchmarkParams() = benchmark_params;
}
return engine_settings;
}
// Creates the SessionConfig from the LiteRtLmSettings.
SessionConfig CreateSessionConfig(const LiteRtLmSettings& settings) {
// Set the session config.
auto session_config = litert::lm::SessionConfig::CreateDefault();
session_config.SetNumOutputCandidates(settings.num_output_candidates);
const std::optional<Backend> sampler_backend = GetSamplerBackend(settings);
if (sampler_backend.has_value()) {
session_config.SetSamplerBackend(*sampler_backend);
}
if (settings.vision_backend.has_value()) {
session_config.SetVisionModalityEnabled(true);
}
if (settings.audio_backend.has_value()) {
session_config.SetAudioModalityEnabled(true);
}
return session_config;
}
absl::Status PrintJsonMessage(const JsonMessage& message,
std::stringstream& captured_output,
bool streaming = false) {
if (message["content"].is_array()) {
for (const auto& content : message["content"]) {
if (content["type"] == "text") {
captured_output << content["text"].get<std::string>();
std::cout << content["text"].get<std::string>();
}
}
if (!streaming) {
captured_output << std::endl << std::flush;
std::cout << std::endl << std::flush;
} else {
captured_output << std::flush;
std::cout << std::flush;
}
} else if (message["content"]["text"].is_string()) {
if (!streaming) {
captured_output << message["content"]["text"].get<std::string>()
<< std::endl
<< std::flush;
std::cout << message["content"]["text"].get<std::string>() << std::endl
<< std::flush;
} else {
captured_output << message["content"]["text"].get<std::string>()
<< std::flush;
std::cout << message["content"]["text"].get<std::string>() << std::flush;
}
} else {
return absl::InvalidArgumentError("Invalid message: " + message.dump());
}
return absl::OkStatus();
}
absl::AnyInvocable<void(absl::StatusOr<Message>)> CreatePrintMessageCallback(
std::stringstream& captured_output, bool benchmark) {
return [&captured_output, benchmark](absl::StatusOr<Message> message) {
if (!message.ok()) {
std::cout << message.status().message() << std::endl;
return;
}
if (benchmark) {
return;
}
if (auto json_message = std::get_if<JsonMessage>(&(*message))) {
if (json_message->is_null()) {
std::cout << std::endl << std::flush;
return;
}
ABSL_CHECK_OK(PrintJsonMessage(*json_message, captured_output,
/*streaming=*/true));
}
};
}
void CheckExpectedOutput(const std::string& captured_output,
const LiteRtLmSettings& settings) {
if (settings.expected_output.has_value()) {
if (!absl::StrContainsIgnoreCase(captured_output,
*settings.expected_output)) {
ABSL_LOG(FATAL) << "Expected output: " << *settings.expected_output
<< " was not found in response: " << captured_output;
}
}
}
absl::Status BuildContentList(absl::string_view prompt_view, json& content_list,
const LiteRtLmSettings& settings) {
int last_pos = 0;
std::string media_type;
std::string media_path;
// We expect the media path to be in the format of [image:/path/to/image.jpg]
// or [audio:/path/to/audio.wav]
//
// So the prompt can be like:
// 1. Briefly describe the two images [image:/path/to/image1.jpg] and
// [image:/path/to/image2.jpg]
//
// 2. Transcribe the audio [audio:/path/to/audio.wav]
//
// 3. First transcribe the [audio:/path/to/audio.wav] then describe the
// content in the [image:/path/to/image.jpg]
RE2 re_media("\\[(image|audio):([^\\s\\]]+)\\]"); // Regex to find image
// or audio paths
constexpr int kBracketShift = 3; // account for [] in the string
absl::string_view whole_prompt(prompt_view);
while (
RE2::FindAndConsume(&prompt_view, re_media, &media_type, &media_path)) {
if (!std::filesystem::exists(media_path)) {
return absl::NotFoundError(
absl::StrCat("[ERROR] Media path ", media_path, " does not exist."));
}
// Calculate the position of the match in the original string
const int media_string_size =
media_type.size() + media_path.size() + kBracketShift;
int match_pos =
whole_prompt.size() - prompt_view.size() - media_string_size;
// Add text part before the media path
if (match_pos > last_pos) {
content_list.push_back(
{{"type", "text"},
{"text", whole_prompt.substr(last_pos, match_pos - last_pos)}});
}
if (media_type == "image" && !settings.vision_backend.has_value()) {
return absl::InvalidArgumentError(
"Image backend is not specified. Please specify the vision backend "
"with --vision_backend=<cpu|gpu>");
}
if (media_type == "audio" && !settings.audio_backend.has_value()) {
return absl::InvalidArgumentError(
"Audio backend is not specified. Please specify the audio backend "
"with --audio_backend=<cpu|gpu>");
}
// Add media part
content_list.push_back({{"type", media_type}, {"path", media_path}});
last_pos = match_pos + media_string_size;
}
// Add any remaining text part
if (!prompt_view.empty()) {
content_list.push_back({{"type", "text"}, {"text", prompt_view}});
}
return absl::OkStatus();
}
absl::StatusOr<std::unique_ptr<Constraint>> CreateRegexConstraint(
const Tokenizer& tokenizer,
const std::vector<std::vector<int>>& stop_token_ids,
std::string constraint_regex) {
ASSIGN_OR_RETURN(
auto constraint_provider,
CreateConstraintProvider(LlGuidanceConfig(), tokenizer, stop_token_ids));
return constraint_provider->CreateConstraint(
LlGuidanceConstraintArg{.constraint_type = LlgConstraintType::kRegex,
.constraint_string = constraint_regex});
}
absl::Status RunSingleTurnConversation(const std::string& input_prompt,
const LiteRtLmSettings& settings,
litert::lm::Engine* engine,
Conversation* conversation) {
json content_list = json::array();
RETURN_IF_ERROR(BuildContentList(input_prompt, content_list, settings));
std::stringstream captured_output;
OptionalArgs optional_args;
if (settings.max_output_tokens > 0) {
optional_args.max_output_tokens = settings.max_output_tokens;
}
if (settings.async) {
RETURN_IF_ERROR(conversation->SendMessageAsync(
json::object({{"role", "user"}, {"content", content_list}}),
CreatePrintMessageCallback(captured_output, settings.benchmark),
std::move(optional_args)));
RETURN_IF_ERROR(engine->WaitUntilDone(kWaitUntilDoneTimeout));
} else {
ASSIGN_OR_RETURN(
auto model_message,
conversation->SendMessage(
json::object({{"role", "user"}, {"content", content_list}}),
std::move(optional_args)));
RETURN_IF_ERROR(PrintJsonMessage(std::get<JsonMessage>(model_message),
captured_output));
}
CheckExpectedOutput(captured_output.str(), settings);
return absl::OkStatus();
}
absl::Status RunMultiTurnConversation(const LiteRtLmSettings& settings,
litert::lm::Engine* engine,
Conversation* conversation) {
std::string input_prompt;
std::stringstream captured_output;
do {
std::cout << "Please enter the prompt (or press Enter to end): ";
std::getline(std::cin, input_prompt);
if (input_prompt.empty()) {
break;
}
json content_list = json::array();
// If there is an error building the content list, skip the prompt and
// continue.
auto status = BuildContentList(input_prompt, content_list, settings);
if (!status.ok()) {
std::cout << status.message() << std::endl;
continue;
}
if (content_list.empty()) {
continue;
}
OptionalArgs optional_args;
if (settings.max_output_tokens > 0) {
optional_args.max_output_tokens = settings.max_output_tokens;
}
if (settings.async) {
RETURN_IF_ERROR(conversation->SendMessageAsync(
json::object({{"role", "user"}, {"content", content_list}}),
CreatePrintMessageCallback(captured_output, settings.benchmark),
std::move(optional_args)));
RETURN_IF_ERROR(engine->WaitUntilDone(kWaitUntilDoneTimeout));
} else {
ASSIGN_OR_RETURN(
auto model_message,
conversation->SendMessage(
json::object({{"role", "user"}, {"content", content_list}}),
std::move(optional_args)));
RETURN_IF_ERROR(PrintJsonMessage(std::get<JsonMessage>(model_message),
captured_output));
}
} while (true);
CheckExpectedOutput(captured_output.str(), settings);
return absl::OkStatus();
}
absl::Status RunSingleTurnSession(const std::string& input_prompt,
const LiteRtLmSettings& settings,
Engine* engine, Engine::Session* session) {
std::stringstream captured_output;
if (settings.async) {
return absl::UnimplementedError(
"Async mode is not supported for single turn session.");
}
ABSL_LOG(INFO) << "Running single turn session with prompt: " << input_prompt;
DecodeConfig decode_config = DecodeConfig::CreateDefault();
if (settings.max_output_tokens > 0) {
decode_config.SetMaxOutputTokens(settings.max_output_tokens);
}
std::unique_ptr<Constraint> constraint;
if (!settings.constraint_regex.empty()) {
ASSIGN_OR_RETURN(
constraint,
CreateRegexConstraint(engine->GetTokenizer(),
session->GetSessionConfig().GetStopTokenIds(),
settings.constraint_regex));
decode_config.SetConstraint(constraint.get());
}
std::vector<InputData> inputs;
inputs.emplace_back(InputText(input_prompt));
RETURN_IF_ERROR(session->RunPrefill(inputs));
ASSIGN_OR_RETURN(auto responses, session->RunDecode(decode_config));
for (const auto& response : responses.GetTexts()) {
captured_output << response << std::endl << std::flush;
}
std::cout << "output: " << captured_output.str() << std::endl << std::flush;
CheckExpectedOutput(captured_output.str(), settings);
return absl::OkStatus();
}
absl::StatusOr<std::vector<litert::lm::ScorerOutput>> RunScoreText(
litert::lm::Engine* llm, litert::lm::Engine::Session* session,
absl::string_view input_prompt,
const std::vector<absl::string_view>& target_text_vector,
bool store_char_and_token_lengths = false) {
std::vector<litert::lm::InputData> inputs;
inputs.emplace_back(InputText(std::string(input_prompt)));
RETURN_IF_ERROR(session->RunPrefill(inputs));
ASSIGN_OR_RETURN(litert::lm::Responses response,
session->RunTextScoring(target_text_vector,
store_char_and_token_lengths));
const std::vector<float>& scores = response.GetScores();
if (scores.empty()) {
ABSL_LOG(WARNING) << "No score found.";
} else {
// Multiply by -1 to get the negative log likelihood.
ABSL_LOG(INFO) << "Score: " << -1 * (scores[0]) << std::endl;
}
if (scores.size() != target_text_vector.size()) {
return absl::InternalError(absl::StrCat("Scores size ", scores.size(),
" does not match target text size ",
target_text_vector.size()));
}
const std::optional<std::vector<int>>& token_lengths =
response.GetTokenLengths();
if (store_char_and_token_lengths) {
if (!token_lengths.has_value()) {
return absl::InternalError("Token lengths are not available.");
}
if (scores.size() != token_lengths->size()) {
return absl::InternalError(absl::StrCat(
"Scores size ", scores.size(), " does not match token lengths size ",
token_lengths->size()));
}
}
// Write the scores and char/token lengths (if requested) to `ScorerOutputs`.
std::vector<litert::lm::ScorerOutput> scorer_outputs;
scorer_outputs.reserve(scores.size());
for (int i = 0; i < scores.size(); ++i) {
litert::lm::ScorerOutput& scorer_output = scorer_outputs.emplace_back();
scorer_output.score = scores[i];
if (store_char_and_token_lengths) {
scorer_output.option_text_char_length = target_text_vector[i].size();
scorer_output.option_text_token_length = (*token_lengths)[i];
}
}
return scorer_outputs;
}
void LogBenchmarkInfo(const litert::lm::BenchmarkInfo& benchmark_info,
const LiteRtLmSettings& settings) {
if (!settings.log_sink_file.has_value()) {
ABSL_LOG(INFO) << benchmark_info;
} else {
ABSL_LOG(INFO) << absl::StrFormat(
"Benchmark flags: "
"benchmark_prefill_tokens=%d,benchmark_decode_tokens=%d,backend=%s",
benchmark_info.GetBenchmarkParams().num_prefill_tokens(),
benchmark_info.GetBenchmarkParams().num_decode_tokens(),
settings.backend);
for (const auto& phase : benchmark_info.GetInitPhases()) {
ABSL_LOG(INFO) << absl::StrFormat(
"%s: %.2f ms", phase.first, absl::ToDoubleMilliseconds(phase.second));
}
ABSL_LOG(INFO) << absl::StrFormat("Time to first token: %.2f s",
benchmark_info.GetTimeToFirstToken());
for (int i = 0; i < benchmark_info.GetTotalPrefillTurns(); ++i) {
ABSL_LOG(INFO) << absl::StrFormat(
"Prefill speed turn %d: %.2f tk/s", i,
benchmark_info.GetPrefillTokensPerSec(0));
ABSL_LOG(INFO) << absl::StrFormat(
"Decode speed turn %d: %.2f tk/s", i,
benchmark_info.GetDecodeTokensPerSec(0));
}
}
}
void LogMemoryUsage(const LiteRtLmSettings& settings, float peak_mem_mb,
float peak_private_mb) {
if (!settings.log_sink_file.has_value()) {
ABSL_LOG(INFO) << "Peak system ram usage: " << peak_mem_mb << "MB.";
ABSL_LOG(INFO) << "Memory usage: "
<< tflite::profiling::memory::GetMemoryUsage();
ABSL_LOG(INFO) << "Peak private footprint: " << peak_private_mb << "MB.";
} else {
ABSL_LOG(INFO) << absl::StrFormat("Peak system ram usage: %.2f MB",
peak_private_mb);
ABSL_LOG(INFO) << absl::StrFormat("Peak private footprint: %.2f MB",
peak_private_mb);
auto memory_usage = tflite::profiling::memory::GetMemoryUsage();
if (memory_usage.IsSupported()) {
ABSL_LOG(INFO) << absl::StrFormat("Physical footprint: %.2f MB",
memory_usage.mem_footprint_kb / 1000.0);
ABSL_LOG(INFO) << absl::StrFormat(
"Total non-mmapped heap size: %.2f MB",
memory_usage.total_allocated_bytes / 1000.0 / 1000.0);
ABSL_LOG(INFO) << absl::StrFormat(
"In-use heap size: %.2f MB",
memory_usage.in_use_allocated_bytes / 1000.0 / 1000.0);
ABSL_LOG(INFO) << absl::StrFormat(
"Private footprint: %.2f MB",
memory_usage.private_footprint_bytes / 1000.0 / 1000.0);
}
}
}
} // namespace
absl::Status RunLiteRtLm(const LiteRtLmSettings& settings,
std::vector<LitertLmMetrics>* metrics) {
std::unique_ptr<FileLogSink> log_sink;
if (settings.log_sink_file.has_value()) {
log_sink = std::make_unique<FileLogSink>(settings.log_sink_file.value());
absl::AddLogSink(log_sink.get());
}
ASSIGN_OR_RETURN(EngineSettings engine_settings,
CreateEngineSettings(settings));
ABSL_LOG(INFO) << "Creating engine";
ASSIGN_OR_RETURN(auto engine,
litert::lm::EngineFactory::CreateAny(
std::move(engine_settings), settings.input_prompt));
if (settings.vision_backend.has_value()) {
ASSIGN_OR_RETURN(auto vision_executor_properties,
engine->GetVisionExecutorProperties());
ABSL_LOG(INFO) << "Vision executor properties: "
<< vision_executor_properties;
}
if (settings.audio_backend.has_value()) {
ASSIGN_OR_RETURN(auto audio_executor_properties,
engine->GetAudioExecutorProperties());
ABSL_LOG(INFO) << "Audio executor properties: "
<< audio_executor_properties;
}
// Get the session config.
SessionConfig session_config = CreateSessionConfig(settings);
for (int i = 0; i < settings.num_iterations; ++i) {
std::unique_ptr<tflite::profiling::memory::MemoryUsageMonitor> mem_monitor;
if (settings.report_peak_memory_footprint) {
mem_monitor =
std::make_unique<tflite::profiling::memory::MemoryUsageMonitor>(
kMemoryCheckIntervalMs);
mem_monitor->Start();
}
// Session and Conversation are mutually exclusive. Only when
// settings.score_target_text is set, we will create a Session to run the
// scoring. Otherwise, we will create a Conversation.
std::unique_ptr<Engine::Session> session;
std::unique_ptr<Conversation> conversation;
if (settings.score_target_text.has_value() &&
!settings.score_target_text->empty()) {
ABSL_LOG(INFO) << "Creating session";
ASSIGN_OR_RETURN(session, engine->CreateSession(session_config));
std::string input_prompt = settings.input_prompt;
std::string score_target_text = settings.score_target_text.value();
ABSL_CHECK_OK(RunScoreText(engine.get(), session.get(), input_prompt,
{score_target_text},
/*store_char_and_token_lengths=*/false));
} else if (settings.use_session) {
ABSL_LOG(INFO) << "Creating session";
ASSIGN_OR_RETURN(session, engine->CreateSession(session_config));
if (settings.multi_turns) {
return absl::UnimplementedError(
"Multi-turns is not supported with Session.");
} else {
RETURN_IF_ERROR(RunSingleTurnSession(settings.input_prompt, settings,
engine.get(), session.get()));
}
} else {
ABSL_LOG(INFO) << "Creating conversation";
ASSIGN_OR_RETURN(auto conversation_config,
ConversationConfig::Builder()
.SetSessionConfig(session_config)
.Build(*engine));
ASSIGN_OR_RETURN(conversation,
Conversation::Create(*engine, conversation_config));
if (settings.multi_turns) {
ABSL_LOG(INFO) << "Running multi-turns conversation";
RETURN_IF_ERROR(RunMultiTurnConversation(settings, engine.get(),
conversation.get()));
} else {
ABSL_LOG(INFO) << "Running single-turn conversation";
RETURN_IF_ERROR(RunSingleTurnConversation(
settings.input_prompt, settings, engine.get(), conversation.get()));
}
}
LitertLmMetrics metric;
if (settings.benchmark) {
absl::StatusOr<BenchmarkInfo> benchmark_info;
if (conversation != nullptr) {
benchmark_info = conversation->GetBenchmarkInfo();
} else if (session != nullptr) {
benchmark_info = session->GetBenchmarkInfo();
} else {
return absl::InternalError("No session or conversation to benchmark.");
}
if (benchmark_info.ok()) {
LogBenchmarkInfo(*benchmark_info, settings);
if (metrics != nullptr) {
metric.benchmark_info = *benchmark_info;
}
}
}
// Manually resetting the session to ensure that memory usage from
// `GetMemoryUsage()` is reporting idle engine state without active
// sessions.
conversation.reset();
session.reset();
if (settings.report_peak_memory_footprint) {
float peak_mem_mb = 0.0f;
float peak_private_mb = 0.0f;
if (mem_monitor != nullptr) {
mem_monitor->Stop();
peak_mem_mb = mem_monitor->GetPeakMemUsageInMB();
peak_private_mb = mem_monitor->GetPeakPrivateFootprintInMB();
if (metrics != nullptr) {
metric.peak_mem_mb = peak_mem_mb;
metric.peak_private_mb = peak_private_mb;
}
}
LogMemoryUsage(settings, peak_mem_mb, peak_private_mb);
}
if (metrics != nullptr) {
metrics->push_back(metric);
}
}
if (log_sink) {
absl::RemoveLogSink(log_sink.get());
}
return absl::OkStatus();
}
} // namespace lm
} // namespace litert
|