
- remove the old LGPL license headers from all files in Spack - add SPDX headers to all files - core and most packages are (Apache-2.0 OR MIT) - a very small number of remaining packages are LGPL-2.1-only
21 lines
651 B
Python
21 lines
651 B
Python
# Copyright 2013-2018 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 IntelMklDnn(CMakePackage):
|
|
"""Intel(R) Math Kernel Library for Deep Neural Networks
|
|
(Intel(R) MKL-DNN)."""
|
|
|
|
homepage = "https://01.org/mkl-dnn"
|
|
url = "https://github.com/01org/mkl-dnn/archive/v0.11.tar.gz"
|
|
|
|
version('0.11', 'a060a42753f633a146c3db699eeee666')
|
|
version('0.10', '3855ad02452a6906e3a9adc9cecef49c')
|
|
version('0.9', 'dfb89d8f9d0bce55e878df32544cb0ea')
|
|
|
|
depends_on('intel-mkl')
|