diff options
author | Nicolas Richart <nrichart@users.noreply.github.com> | 2018-07-12 14:30:59 +0200 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2018-07-12 07:30:59 -0500 |
commit | d8921ac323a9d1456d8b601d4c6ead0abde35426 (patch) | |
tree | 5b0b08f4c3fc583e407a17bd53e75b7480ba0c17 | |
parent | 1846bc5ed6384b55d10fc2085d47e4a519565476 (diff) | |
download | spack-d8921ac323a9d1456d8b601d4c6ead0abde35426.tar.gz spack-d8921ac323a9d1456d8b601d4c6ead0abde35426.tar.bz2 spack-d8921ac323a9d1456d8b601d4c6ead0abde35426.tar.xz spack-d8921ac323a9d1456d8b601d4c6ead0abde35426.zip |
First try on pytorch (#8649)
* initial version of the package pyTorch (#171)
* adding version 0.4
* flake8 correction
* reordering version, removing run dependecies
* Changing depends_on type to default
-rw-r--r-- | var/spack/repos/builtin/packages/py-pytorch/package.py | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pytorch/package.py b/var/spack/repos/builtin/packages/py-pytorch/package.py new file mode 100644 index 0000000000..b8c648d6fe --- /dev/null +++ b/var/spack/repos/builtin/packages/py-pytorch/package.py @@ -0,0 +1,93 @@ +############################################################################## +# Copyright (c) 2013-2016, Lawrence Livermore National Security, LLC. +# Produced at the Lawrence Livermore National Laboratory. +# +# This file is part of Spack. +# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved. +# LLNL-CODE-647188 +# +# For details, see https://github.com/llnl/spack +# Please also see the LICENSE file for our notice and the LGPL. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License (as +# published by the Free Software Foundation) version 2.1, February 1999. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and +# conditions of the GNU Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +############################################################################## +from spack import * + + +class PyPytorch(PythonPackage): + """Tensors and Dynamic neural networks in Python + with strong GPU acceleration.""" + + homepage = "http://pytorch.org/" + url = "https://github.com/pytorch/pytorch/archive/v0.3.1.tar.gz" + + version('0.4.0', git='https://github.com/pytorch/pytorch.git', + tag='v0.4.0', submodules=True) + version('0.3.1', git='https://github.com/pytorch/pytorch.git', + tag='v0.3.1', submodules=True) + + variant('cuda', default='False', description='Add GPU support') + variant('cudnn', default='False', description='Add cuDNN support') + variant('nccl', default='False', description='Add NCCL support') + variant('mkldnn', default='False', description='Add Intel MKL DNN support') + variant('magma', default='False', description='Add MAGMA support') + + conflicts('+cudnn', when='~cuda') + conflicts('+nccl', when='~cuda') + conflicts('+magma', when='~cuda') + conflicts('+mkldnn', when='@:0.3.2') + + depends_on('py-setuptools', type='build') + depends_on('py-cffi', type='build') + depends_on('py-numpy', type=('run', 'build')) + depends_on('blas') + depends_on('lapack') + depends_on('py-pyyaml', type=('run', 'build')) + depends_on('py-typing', when='@0.3.2:', type=('run', 'build')) + depends_on('intel-mkl', when='+mkl') + depends_on('cuda', when='+cuda', type=('build', 'link', 'run')) + depends_on('cudnn', when='+cuda+cudnn') + depends_on('nccl', when='+cuda+nccl') + depends_on('magma+shared', when='+cuda+magma') + + def setup_environment(self, build_env, run_env): + build_env.set('MAX_JOBS', make_jobs) + + if '+cuda' in self.spec: + build_env.set('CUDA_HOME', self.spec['cuda'].prefix) + else: + build_env.set('NO_CUDA', 'TRUE') + + if '+cudnn' in self.spec: + build_env.set('CUDNN_LIB_DIR', + self.spec['cudnn'].prefix.lib) + build_env.set('CUDNN_INCLUDE_DIR', + self.spec['cudnn'].prefix.include) + else: + build_env.set('NO_CUDNN', 'TRUE') + + if '+nccl' in self.spec: + build_env.set('NCCL_ROOT_DIR', self.spec['nccl'].prefix) + else: + build_env.set('NO_SYSTEM_NCCL', 'TRUE') + + if '+mkldnn' in self.spec: + build_env.set('MKLDNN_HOME', self.spec['intel-mkl'].prefix) + else: + build_env.set('NO_MKLDNN', 'TRUE') + + build_env.set('NO_NNPACK', 'TRUE') + + build_env.set('PYTORCH_BUILD_VERSION', str(self.version)) + build_env.set('PYTORCH_BUILD_NUMBER', 0) |