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

[executorch][core] NamedDataMap interface #7763

Merged
merged 6 commits into from
Jan 24, 2025
Merged
Show file tree
Hide file tree
Changes from 5 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
76 changes: 76 additions & 0 deletions runtime/core/named_data_map.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
*/

#pragma once

#include <executorch/runtime/core/exec_aten/exec_aten.h>
#include <executorch/runtime/core/freeable_buffer.h>
#include <executorch/runtime/core/result.h>
#include <executorch/runtime/core/span.h>
#include <executorch/runtime/core/tensor_layout.h>
#include <executorch/runtime/platform/compiler.h>

namespace executorch {
namespace runtime {

/**
* Interface to access and retrieve data via name.
* See executorch/extension/flat_tensor/ for an example.
*/
class ET_EXPERIMENTAL NamedDataMap {
public:
virtual ~NamedDataMap() = default;
/**
* Get tensor metadata by fully qualified name (FQN).
*
* @param fqn Fully qualified name of the tensor.
* @return Result containing TensorLayout with tensor metadata.
*/
ET_NODISCARD virtual Result<const executorch::runtime::TensorLayout>
get_metadata(const char* fqn) const = 0;
/**
* Get tensor data by fully qualified name (FQN).
*
* @param fqn Fully qualified name of the tensor.
* @return Result containing a FreeableBuffer with the tensor data.
*/
ET_NODISCARD virtual Result<FreeableBuffer> get_data(
const char* fqn) const = 0;

/**
* Loads data corresponding to the fqn into the provided buffer.
*
* @param fqn Fully qualified name of the tensor.
* @param size The number of bytes to load. Use `get_metadata` to retrieve the
* size of the tensor for a given fqn.
* @param buffer The buffer to load the data into. Must point to at least
* `size` bytes of memory.
* @return Result containing the number of bytes written on success.
*/
ET_NODISCARD virtual Result<size_t>
load_data_into(const char* fqn, size_t size, void* buffer) const = 0;

/**
* Get the number of keys in the NamedDataMap.
*
* @return Result containing the number of keys.
*/
ET_NODISCARD virtual Result<size_t> get_num_keys() const = 0;

/**
* Get the key at the given index.
*
* @param index The index of the key to retrieve.
* @return Result containing the key at the given index. Note: the returned
* pointer is only valid for the lifetime of the DataMap.
*/
ET_NODISCARD virtual Result<const char*> get_key(size_t index) const = 0;
};

} // namespace runtime
} // namespace executorch
1 change: 1 addition & 0 deletions runtime/core/targets.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ def define_common_targets():
"defines.h",
"error.h",
"freeable_buffer.h",
"named_data_map.h",
"result.h",
"span.h",
"tensor_layout.h",
Expand Down