summaryrefslogtreecommitdiff
path: root/lib/spack/llnl/util/cpu/__init__.py
blob: eda6fa9c36939d2acce69bc17f2a73315a4cb4f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Copyright 2013-2019 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 .detect import host

__all__ = [
    'Microarchitecture',
    'UnsupportedMicroarchitecture',
    'targets',
    'generic_microarchitecture',
    'host'
]