forked from pytorch/executorch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackend_execution_context.h
More file actions
80 lines (69 loc) · 2.24 KB
/
backend_execution_context.h
File metadata and controls
80 lines (69 loc) · 2.24 KB
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
/*
* 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 executorch {
namespace ET_RUNTIME_NAMESPACE {
/**
* BackendExecutionContext will be used to inject run time context.
*/
class BackendExecutionContext final {
public:
BackendExecutionContext(
EventTracer* event_tracer = nullptr,
MemoryAllocator* temp_allocator = nullptr,
const char* method_name = nullptr)
: event_tracer_(event_tracer),
temp_allocator_(temp_allocator),
method_name_(method_name) {}
/**
* 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);
}
/**
* Returns the temp allocator. This allocator will be reset every instruction.
*/
MemoryAllocator* get_temp_allocator() {
return temp_allocator_;
}
/**
* Get the name of the executing method from the ExecuTorch runtime.
*/
const char* get_method_name() const {
return method_name_;
}
private:
EventTracer* event_tracer_ = nullptr;
MemoryAllocator* temp_allocator_ = nullptr;
const char* method_name_ = nullptr;
};
} // namespace ET_RUNTIME_NAMESPACE
} // namespace executorch
namespace torch {
namespace executor {
// TODO(T197294990): Remove these deprecated aliases once all users have moved
// to the new `::executorch` namespaces.
using ::executorch::ET_RUNTIME_NAMESPACE::BackendExecutionContext;
} // namespace executor
} // namespace torch