summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/cuda-memtest/package.py
blob: 90e218b126b5b073899b5426eeff9682be5560af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Copyright 2013-2024 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 spack.package import *


class CudaMemtest(CMakePackage):
    """Maintained and updated fork of cuda_memtest.

    original homepage: http://sourceforge.net/projects/cudagpumemtest .

    This software tests GPU memory for hardware errors and soft errors
    using CUDA or OpenCL.
    """

    homepage = "https://github.com/ComputationalRadiationPhysics/cuda_memtest"
    git = "https://github.com/ComputationalRadiationPhysics/cuda_memtest.git"

    maintainers("ax3l")

    license("Unlicense")

    version("master", branch="dev")

    depends_on("cmake@2.8.5:", type="build")
    # depends_on('nvml', when='+nvml')
    depends_on("cuda@5.0:")