spack/var/spack/repos/builtin/packages/hybridsim/package.py
Todd Gamblin 3118647802
Update copyright year to 2024 (#41919)
It was time to run `spack license update-copyright-year` again.
2024-01-02 09:21:30 +01:00

38 lines
1.2 KiB
Python

# 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 Hybridsim(MakefilePackage):
"""
HybridSim provides cycle-accurate simulation of a non-volatile
memory system augmented with a DRAM based cache. It uses DRAMSim2
for the DRAM model and NVDIMMSim for the non-volatile memory model
"""
homepage = "https://github.com/jimstevens2001/HybridSim"
git = "https://github.com/jimstevens2001/HybridSim"
url = "https://github.com/jimstevens2001/HybridSim/archive/v2.0.1.tar.gz"
maintainers("jjwilke")
version("2.0.1", sha256="57b82ac929acd36de84525e4d61358f1ab6532f5b635ca3f560e563479921937")
depends_on("dramsim2")
depends_on("nvdimmsim")
patch("makefile.patch", when="@2.0.1")
def build(self, spec, prefix):
symlink(spec["dramsim2"].prefix, "DRAMSim2")
symlink(spec["nvdimmsim"].prefix, "NVDIMMSim")
if spec.satisfies("platform=darwin"):
make("libhybridsim.dylib")
else:
make("libhybridsim.so")
def install(self, spec, prefix):
install_tree(".", prefix)