summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2021-06-17 01:01:24 -0500
committerGitHub <noreply@github.com>2021-06-17 00:01:24 -0600
commit56f19045388a4e467aa7b137801542c71c1426ea (patch)
treed5173e69d9b73939830fbf52201f35370786d2f7 /var
parent10608edd24ba2bc8f02b27a481fce1b6195b775d (diff)
downloadspack-56f19045388a4e467aa7b137801542c71c1426ea.tar.gz
spack-56f19045388a4e467aa7b137801542c71c1426ea.tar.bz2
spack-56f19045388a4e467aa7b137801542c71c1426ea.tar.xz
spack-56f19045388a4e467aa7b137801542c71c1426ea.zip
NNPACK: add new package (#24333)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/nnpack/package.py118
1 files changed, 118 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/nnpack/package.py b/var/spack/repos/builtin/packages/nnpack/package.py
new file mode 100644
index 0000000000..75e2b53379
--- /dev/null
+++ b/var/spack/repos/builtin/packages/nnpack/package.py
@@ -0,0 +1,118 @@
+# Copyright 2013-2021 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 import *
+
+
+class Nnpack(CMakePackage):
+ """Acceleration package for neural networks on multi-core CPUs."""
+
+ homepage = "https://github.com/Maratyszcza/NNPACK"
+ git = "https://github.com/Maratyszcza/NNPACK.git"
+
+ version('master', branch='master')
+ version('2020-12-21', commit='c07e3a0400713d546e0dea2d5466dd22ea389c73') # py-torch@1.8:1.9
+ version('2019-10-07', commit='24b55303f5cf65d75844714513a0d1b1409809bd') # py-torch@1.4:1.7
+ version('2019-03-23', commit='c039579abe21f5756e0f0e45e8e767adccc11852') # py-torch@1.1:1.3
+ version('2018-09-03', commit='1e005b0c2777f39972a4ac15bea03e0e315a3d92') # py-torch@1.0
+ version('2018-05-21', commit='3eb0d453662d05a708f43b108bed9e17b705383e') # py-torch@0.4.1
+ version('2018-04-05', commit='b63fe1ba8963f1756b8decc593766615cee99c35') # py-torch@:0.4.0
+
+ depends_on('cmake@2.8.12:', type='build')
+ depends_on('ninja', type='build')
+ depends_on('python', type='build')
+ depends_on('py-setuptools', type='build')
+
+ generator = 'Ninja'
+
+ resource(
+ name='six',
+ url='https://files.pythonhosted.org/packages/source/s/six/six-1.11.0.tar.gz',
+ sha256='70e8a77beed4562e7f14fe23a786b54f6296e34344c23bc42f07b15018ff98e9',
+ destination='deps',
+ placement='six',
+ )
+ resource(
+ name='opcodes',
+ url='https://files.pythonhosted.org/packages/source/o/opcodes/opcodes-0.3.13.tar.gz',
+ sha256='1859c23143fe20daa4110be87a947cbf3eefa048da71dde642290213f251590c',
+ destination='deps',
+ placement='opcodes',
+ )
+ resource(
+ name='peachpy',
+ git='https://github.com/Maratyszcza/PeachPy.git',
+ branch='master',
+ destination='deps',
+ placement='peachpy',
+ )
+ resource(
+ name='cpuinfo',
+ git='https://github.com/Maratyszcza/cpuinfo.git',
+ branch='master',
+ destination='deps',
+ placement='cpuinfo',
+ )
+ resource(
+ name='fp16',
+ git='https://github.com/Maratyszcza/FP16.git',
+ branch='master',
+ destination='deps',
+ placement='fp16',
+ )
+ resource(
+ name='fxdiv',
+ git='https://github.com/Maratyszcza/FXdiv.git',
+ branch='master',
+ destination='deps',
+ placement='fxdiv',
+ )
+ resource(
+ name='psimd',
+ git='https://github.com/Maratyszcza/psimd.git',
+ branch='master',
+ destination='deps',
+ placement='psimd',
+ )
+ resource(
+ name='pthreadpool',
+ git='https://github.com/Maratyszcza/pthreadpool.git',
+ branch='master',
+ destination='deps',
+ placement='pthreadpool',
+ )
+ resource(
+ name='googletest',
+ url='https://github.com/google/googletest/archive/release-1.8.0.zip',
+ sha256='f3ed3b58511efd272eb074a3a6d6fb79d7c2e6a0e374323d1e6bcbcc1ef141bf',
+ destination='deps',
+ placement='googletest',
+ )
+
+ @run_before('cmake')
+ def generate_peachpy(self):
+ # https://github.com/Maratyszcza/NNPACK/issues/203
+ with working_dir(join_path(self.stage.source_path, 'deps', 'peachpy')):
+ setup_py('generate')
+
+ def cmake_args(self):
+ return [
+ self.define('PYTHON_SIX_SOURCE_DIR',
+ join_path(self.stage.source_path, 'deps', 'six')),
+ self.define('PYTHON_PEACHPY_SOURCE_DIR',
+ join_path(self.stage.source_path, 'deps', 'peachpy')),
+ self.define('CPUINFO_SOURCE_DIR',
+ join_path(self.stage.source_path, 'deps', 'cpuinfo')),
+ self.define('FP16_SOURCE_DIR',
+ join_path(self.stage.source_path, 'deps', 'fp16')),
+ self.define('FXDIV_SOURCE_DIR',
+ join_path(self.stage.source_path, 'deps', 'fxdiv')),
+ self.define('PSIMD_SOURCE_DIR',
+ join_path(self.stage.source_path, 'deps', 'psimd')),
+ self.define('PTHREADPOOL_SOURCE_DIR',
+ join_path(self.stage.source_path, 'deps', 'pthreadpool')),
+ self.define('GOOGLETEST_SOURCE_DIR',
+ join_path(self.stage.source_path, 'deps', 'googletest')),
+ ]