diff options
author | haralmha <47558670+haralmha@users.noreply.github.com> | 2022-03-08 18:41:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-08 18:41:08 +0100 |
commit | 2c2eb911e1c920d1c4a330e56eaba5996ed6ae9d (patch) | |
tree | 9afa5ae13ef5aab738ada9473ac0b31a25311e94 | |
parent | d1e026695226535c4055bb3915efcf99c260f694 (diff) | |
download | spack-2c2eb911e1c920d1c4a330e56eaba5996ed6ae9d.tar.gz spack-2c2eb911e1c920d1c4a330e56eaba5996ed6ae9d.tar.bz2 spack-2c2eb911e1c920d1c4a330e56eaba5996ed6ae9d.tar.xz spack-2c2eb911e1c920d1c4a330e56eaba5996ed6ae9d.zip |
vectorclass-version2: add new package (#29400)
-rw-r--r-- | var/spack/repos/builtin/packages/vectorclass-version2/package.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/vectorclass-version2/package.py b/var/spack/repos/builtin/packages/vectorclass-version2/package.py new file mode 100644 index 0000000000..00aa8147c9 --- /dev/null +++ b/var/spack/repos/builtin/packages/vectorclass-version2/package.py @@ -0,0 +1,22 @@ +# 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 import * + + +class VectorclassVersion2(Package): + """This is a C++ class library for using the Single Instruction Multiple + Data (SIMD) instructions to improve performance on modern microprocessors + with the x86 or x86/64 instruction set on Windows, Linux, and Mac platforms.""" + + homepage = "https://www.agner.org/optimize/#vectorclass" + url = "https://github.com/vectorclass/version2/archive/refs/tags/v2.01.04.tar.gz" + + maintainers = ['haralmha'] + + version('2.01.04', sha256='7885c343b1af9eb940f4debdd7cd19544130a06ed70e0000e1a8471fb9c15118') + + def install(self, spec, prefix): + install_tree('.', prefix) |