blob: 4c13811a1c0e25a19a3cf780d19cf5f8d9dae1e4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# 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)
class PyPynvml(PythonPackage):
"""Provides a Python interface to GPU management and monitoring
functions. This is a wrapper around the NVML library. For
information about the NVML library, see the NVML developer page
http://developer.nvidia.com/nvidia-management-library-nvml"""
homepage = "http://www.nvidia.com/"
pypi = "pynvml/pynvml-8.0.4.tar.gz"
version('8.0.4', sha256='c8d4eadc648c7e12a3c9182a9750afd8481b76412f83747bcc01e2aa829cde5d')
depends_on('py-setuptools', type='build')
depends_on('python@3.6:', type=('build', 'run'))
|