Current File : /home/inlingua/miniconda3/lib/python3.1/site-packages/archspec/cpu/__init__.py
# 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 .detect import host
from .microarchitecture import (
    TARGETS,
    Microarchitecture,
    UnsupportedMicroarchitecture,
    generic_microarchitecture,
    version_components,
)

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