__init__.py 715 Bytes
Newer Older
1
2
3
4
5
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.

"""A module containing all the e2e model related benchmarks."""

6
from superbench.benchmarks.model_benchmarks.model_base import ModelBenchmark
7
from superbench.benchmarks.model_benchmarks.pytorch_bert import PytorchBERT
8
from superbench.benchmarks.model_benchmarks.pytorch_gpt2 import PytorchGPT2
9
from superbench.benchmarks.model_benchmarks.pytorch_cnn import PytorchCNN
10
from superbench.benchmarks.model_benchmarks.pytorch_lstm import PytorchLSTM
11
from superbench.benchmarks.model_benchmarks.megatron_gpt3 import MegatronGPT
12

pdr's avatar
pdr committed
13
__all__ = ['ModelBenchmark', 'PytorchBERT', 'PytorchGPT2', 'PytorchCNN', 'PytorchLSTM', 'MegatronGPT', 'PytorchLlama']