1# Copyright (c) Meta Platforms, Inc. and affiliates. 2# All rights reserved. 3# 4# This source code is licensed under the BSD-style license found in the 5# LICENSE file in the root directory of this source tree. 6 7# pyre-unsafe 8 9from executorch.devtools.inspector._inspector import ( 10 Event, 11 EventBlock, 12 Inspector, 13 PerfData, 14) 15from executorch.devtools.inspector._inspector_utils import compare_results, TimeScale 16 17__all__ = [ 18 "Event", 19 "EventBlock", 20 "Inspector", 21 "PerfData", 22 "compare_results", 23 "TimeScale", 24] 25