19 lines
579 B
Python
19 lines
579 B
Python
# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
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'
|
|
]
|