__init__.py 972 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
13
from superbench.benchmarks.model_benchmarks.pytorch_llama import PytorchLlama
from superbench.benchmarks.model_benchmarks.pytorch_mixtral import PytorchMixtral
14

15
16
17
18
19
20
21
__all__ = [
    'ModelBenchmark', 'PytorchBERT', 'PytorchGPT2', 'PytorchCNN', 'PytorchLSTM', 'MegatronGPT', 'PytorchLlama',
    'PytorchMixtral'
]

if PytorchMixtral is not None:
    __all__.append('PytorchMixtral')