Skip to content

Commit 2e1f1ca

Browse files
Chris Thompsonfacebook-github-bot
authored andcommitted
Add event_tracer to MIL for Backend Init Context (#11105)
Summary: Allow for intended usage of event tracer in BackendInitContext. Reviewed By: cccclai Differential Revision: D75308778
1 parent 1a27c14 commit 2e1f1ca

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/pull.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ jobs:
406406
output=$(ls -la cmake-out/test/size_test)
407407
arr=($output)
408408
size=${arr[4]}
409-
threshold="47560"
409+
threshold="55000"
410410
if [[ "$size" -le "$threshold" ]]; then
411411
echo "Success $size <= $threshold"
412412
else

runtime/backend/backend_init_context.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ class BackendInitContext final {
2525
const char* method_name = nullptr,
2626
const NamedDataMap* named_data_map = nullptr)
2727
: runtime_allocator_(runtime_allocator),
28+
event_tracer_(event_tracer),
2829
method_name_(method_name),
2930
named_data_map_(named_data_map) {}
3031

0 commit comments

Comments
 (0)