blob: 1445eb776fd25fa8f198f875e44c067252c81b97 [file] [log] [blame]
/*
* 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/event_tracer.h>
#include <executorch/runtime/core/memory_allocator.h>
namespace torch {
namespace executor {
/**
* BackendExecutionContext will be used to inject run time context.
*/
class BackendExecutionContext final {
public:
BackendExecutionContext(
EventTracer* event_tracer = nullptr,
MemoryAllocator* temp_allocator = nullptr)
: event_tracer_(event_tracer), temp_allocator_(temp_allocator) {}
/**
* Returns a pointer to an instance of EventTracer to do profiling/debugging
* logging inside the delegate backend. Users will need access to this pointer
* to use any of the event tracer APIs.
*/
EventTracer* event_tracer() {
return event_tracer_;
}
/**
* Returns a pointer to the address allocated by temp allocator. This
* allocator will be reset after every delegate call during execution.
*/
void* allocate(
size_t size,
size_t alignment = MemoryAllocator::kDefaultAlignment) {
// TODO(chenlai): depends on the need, we may expose more functionality for
// memory allocation.
return temp_allocator_->allocate(size, alignment);
}
private:
EventTracer* event_tracer_ = nullptr;
MemoryAllocator* temp_allocator_ = nullptr;
};
} // namespace executor
} // namespace torch