Skip to content
Snippets Groups Projects
Commit e24bf872 authored by Wouter Deconinck's avatar Wouter Deconinck
Browse files

New package farmhash; additional depends_on for tensorflow-lite

parent 8e4b6294
No related branches found
No related tags found
1 merge request!273New package farmhash; additional depends_on for tensorflow-lite
# 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 Farmhash(AutotoolsPackage):
"""FarmHash is a family of hash functions."""
homepage = "https://github.com/google/farmhash"
url = "https://github.com/google/farmhash"
git = "https://github.com/google/farmhash"
maintainers = ['wdconinc']
version('master', branch='master')
depends_on('autoconf', type='build', when='@master')
depends_on('automake', type='build', when='@master')
depends_on('libtool', type='build', when='@master')
force_autoreconf = True
patch('https://github.com/google/farmhash/pull/25.patch',sha256='cbb6709d51d8d517d5df8a47e5c1867610dc5352152e78b64dec75620f95cc97')
......@@ -35,11 +35,10 @@ class TensorflowLite(CMakePackage):
depends_on('gemmlowp')
depends_on('psimd')
depends_on('pthreadpool')
#depends_on(farmhash REQUIRED)
depends_on('farmhash')
#depends_on(fft2d REQUIRED)
#depends_on(neon2sse REQUIRED)
#depends_on(clog REQUIRED)
#depends_on(cpuinfo REQUIRED)
depends_on('cpuinfo')
#depends_on(ruy REQUIRED)
# GPU variant dependencies
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment