forked from pytorch/executorch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
31 lines (28 loc) · 852 Bytes
/
Copy path__init__.py
File metadata and controls
31 lines (28 loc) · 852 Bytes
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
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
# Copyright 2026 Arm Limited and/or its affiliates.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
# pyre-unsafe
from executorch.devtools.inspector._inspector import (
Event,
EventBlock,
Inspector,
PerfData,
)
from executorch.devtools.inspector._inspector_utils import compare_results, TimeScale
from executorch.devtools.inspector.vgf_neural_statistics import (
parse_vgf_neural_statistics_delegate_metadata,
parse_vgf_neural_statistics_metadata,
)
__all__ = [
"Event",
"EventBlock",
"Inspector",
"PerfData",
"compare_results",
"TimeScale",
"parse_vgf_neural_statistics_delegate_metadata",
"parse_vgf_neural_statistics_metadata",
]