Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use NDM in backend init context #8945

Merged
merged 1 commit into from
Mar 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions runtime/backend/backend_init_context.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

#pragma once
#include <executorch/runtime/core/memory_allocator.h>
#include <executorch/runtime/core/named_data_map.h>

namespace executorch {
namespace runtime {
Expand All @@ -21,8 +22,11 @@ class BackendInitContext final {
explicit BackendInitContext(
MemoryAllocator* runtime_allocator,
EventTracer* event_tracer = nullptr,
const char* method_name = nullptr)
: runtime_allocator_(runtime_allocator), method_name_(method_name) {}
const char* method_name = nullptr,
const NamedDataMap* named_data_map = nullptr)
: runtime_allocator_(runtime_allocator),
method_name_(method_name),
named_data_map_(named_data_map) {}

/** Get the runtime allocator passed from Method. It's the same runtime
* executor used by the standard executor runtime and the life span is the
Expand Down Expand Up @@ -52,10 +56,18 @@ class BackendInitContext final {
return method_name_;
}

/** Get the named data map from ExecuTorch runtime.
* This provides a way for backends to retrieve data blobs by key.
*/
const NamedDataMap* get_named_data_map() const {
return named_data_map_;
}

private:
MemoryAllocator* runtime_allocator_ = nullptr;
EventTracer* event_tracer_ = nullptr;
const char* method_name_ = nullptr;
const NamedDataMap* named_data_map_ = nullptr;
};

} // namespace runtime
Expand Down
1 change: 1 addition & 0 deletions runtime/backend/interface.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
#include <executorch/runtime/core/evalue.h>
#include <executorch/runtime/core/freeable_buffer.h>
#include <executorch/runtime/core/memory_allocator.h>
#include <executorch/runtime/core/named_data_map.h>
#include <executorch/runtime/core/result.h>
#include <executorch/runtime/platform/compiler.h>

Expand Down
1 change: 1 addition & 0 deletions runtime/backend/targets.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,6 @@ def define_common_targets():
"//executorch/runtime/core:evalue" + aten_suffix,
"//executorch/runtime/core:event_tracer" + aten_suffix,
"//executorch/runtime/core:memory_allocator",
"//executorch/runtime/core:named_data_map",
],
)
11 changes: 10 additions & 1 deletion runtime/executor/method.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -798,6 +798,14 @@ Error Method::init(
return Error::MemoryAllocationFailed;
}

// Get NamedDataMap, if it exists.
const NamedDataMap* pte_data_map = nullptr;
Result<const NamedDataMap*> pte_data_map_res =
program_->get_named_data_map();
if (pte_data_map_res.ok()) {
pte_data_map = pte_data_map_res.get();
}

// n_delegate_ counts the number of successfully-initialized delegates for
// ~Method() to clean up, and is incremented at the bottom of the loop. This
// makes it safe for errors to return without updating any state.
Expand All @@ -808,7 +816,8 @@ Error Method::init(
BackendInitContext backend_init_context(
method_allocator,
/*event_tracer=*/event_tracer_,
/*method_name=*/serialization_plan_->name()->c_str());
/*method_name=*/serialization_plan_->name()->c_str(),
/*named_data_map=*/pte_data_map);
Error err = BackendDelegate::Init(
delegate, program_, backend_init_context, &delegates_[i]);
if (err != Error::Ok) {
Expand Down
Loading