summaryrefslogtreecommitdiff
path: root/lib/spack/external/archspec/cpu/__init__.py
blob: b3ea025732e1ea1317492cf662a7c73f4d6112e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright 2019-2020 Lawrence Livermore National Security, LLC and other
# Archspec Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
"""The "cpu" package permits to query and compare different
CPU microarchitectures.
"""
from .microarchitecture import Microarchitecture, UnsupportedMicroarchitecture
from .microarchitecture import TARGETS, generic_microarchitecture
from .microarchitecture import version_components
from .detect import host

__all__ = [
    "Microarchitecture",
    "UnsupportedMicroarchitecture",
    "TARGETS",
    "generic_microarchitecture",
    "host",
    "version_components",
]