28 lines
727 B
Python
28 lines
727 B
Python
# 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 brand_string, host
|
|
from .microarchitecture import (
|
|
TARGETS,
|
|
InvalidCompilerVersion,
|
|
Microarchitecture,
|
|
UnsupportedMicroarchitecture,
|
|
generic_microarchitecture,
|
|
version_components,
|
|
)
|
|
|
|
__all__ = [
|
|
"brand_string",
|
|
"host",
|
|
"TARGETS",
|
|
"InvalidCompilerVersion",
|
|
"Microarchitecture",
|
|
"UnsupportedMicroarchitecture",
|
|
"generic_microarchitecture",
|
|
"version_components",
|
|
]
|