2022-03-21 20:17:03 +00:00
|
|
|
# Copyright The PyTorch Lightning team.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
2021-06-04 15:38:29 +00:00
|
|
|
from pytorch_lightning.profiler.advanced import AdvancedProfiler
|
|
|
|
from pytorch_lightning.profiler.base import AbstractProfiler, BaseProfiler, PassThroughProfiler
|
2022-03-21 20:17:03 +00:00
|
|
|
from pytorch_lightning.profiler.profiler import Profiler
|
2021-03-02 07:57:49 +00:00
|
|
|
from pytorch_lightning.profiler.pytorch import PyTorchProfiler
|
2021-06-04 15:38:29 +00:00
|
|
|
from pytorch_lightning.profiler.simple import SimpleProfiler
|
2021-06-28 19:28:05 +00:00
|
|
|
from pytorch_lightning.profiler.xla import XLAProfiler
|
2020-02-07 03:01:21 +00:00
|
|
|
|
|
|
|
__all__ = [
|
2021-07-26 11:37:35 +00:00
|
|
|
"AbstractProfiler",
|
|
|
|
"BaseProfiler",
|
2022-03-21 20:17:03 +00:00
|
|
|
"Profiler",
|
2021-07-26 11:37:35 +00:00
|
|
|
"AdvancedProfiler",
|
|
|
|
"PassThroughProfiler",
|
|
|
|
"PyTorchProfiler",
|
|
|
|
"SimpleProfiler",
|
|
|
|
"XLAProfiler",
|
2020-02-07 03:01:21 +00:00
|
|
|
]
|