summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorWladimir Arturo Garces Carrillo <ingwladimirgarces@gmail.com>2022-12-22 11:27:07 -0300
committerGitHub <noreply@github.com>2022-12-22 07:27:07 -0700
commit3304312b26682a59aafc8777190db065e65c19e4 (patch)
tree8bde9eba28a7e9fed056f8ac0638b63e8c30c896 /var
parent3279ee70686af9a2f55b8961753834885417b99f (diff)
downloadspack-3304312b26682a59aafc8777190db065e65c19e4.tar.gz
spack-3304312b26682a59aafc8777190db065e65c19e4.tar.bz2
spack-3304312b26682a59aafc8777190db065e65c19e4.tar.xz
spack-3304312b26682a59aafc8777190db065e65c19e4.zip
neve: add new package (#34596)
Co-authored-by: WladIMirG <WladIMirG@users.noreply.github.com>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/neve/package.py43
1 files changed, 43 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/neve/package.py b/var/spack/repos/builtin/packages/neve/package.py
new file mode 100644
index 0000000000..e46d16175a
--- /dev/null
+++ b/var/spack/repos/builtin/packages/neve/package.py
@@ -0,0 +1,43 @@
+# Copyright 2013-2022 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 Neve(MakefilePackage):
+ """Benchmark to study communication and memory-access performance of graphs."""
+
+ homepage = "https://github.com/ECP-ExaGraph"
+ git = "https://github.com/ECP-ExaGraph/neve.git"
+
+ version("master", branch="master")
+
+ variant("openmp", default=True, description="Build with OpenMP support")
+ variant("opt", default=True, description="Optimization flags")
+
+ depends_on("mpi")
+
+ @property
+ def build_targets(self):
+ targets = []
+ cxxflags = ["-std=c++11 -g"]
+ ldflags = []
+
+ if "+openmp" in self.spec:
+ cxxflags.append(self.compiler.openmp_flag)
+ ldflags.append(self.compiler.openmp_flag)
+ if "+opt" in self.spec:
+ cxxflags.append(" -O3 ")
+
+ targets.append("CXXFLAGS={0}".format(" ".join(cxxflags)))
+ targets.append("OPTFLAGS={0}".format(" ".join(ldflags)))
+ targets.append("CXX={0}".format(self.spec["mpi"].mpicxx))
+
+ return targets
+
+ def install(self, spec, prefix):
+ mkdirp(prefix.bin)
+ install("neve", prefix.bin)