
* Bump up the version for ROCm-6.3.0 * changes for aqlprofile, rocprofiler-dev and omnitrace * add rocfft patch, correct Clang_DIR and add aqlprofile yum package * add rpp and rocm-openmp-extras changes * hipblaslt changes * add rvs rocm 6.3 * bump rocdecode and rocpydecode * add rocdecode libva arg * add llvm-amdgpu dependency for hipblaslt * restrict half in miopen-hip * fix for rocblas and hipblaslt * fix hipblas-common target_include * fix sha256 for rocm-tensile Co-authored-by: Tamara Dahlgren <35777542+tldahlgren@users.noreply.github.com> --------- Co-authored-by: Tamara Dahlgren <35777542+tldahlgren@users.noreply.github.com>
30 lines
1.3 KiB
Python
30 lines
1.3 KiB
Python
# Copyright 2013-2024 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.package import *
|
|
|
|
|
|
class Dlpack(CMakePackage):
|
|
"""DLPack is an RFC for common tensor and operator guidelines
|
|
in deep learning systems."""
|
|
|
|
homepage = "https://github.com/dmlc/dlpack"
|
|
git = "https://github.com/dmlc/dlpack.git"
|
|
url = "https://github.com/dmlc/dlpack/archive/refs/tags/v0.5.tar.gz"
|
|
|
|
license("Apache-2.0")
|
|
|
|
version("master", branch="master")
|
|
version("1.0", sha256="f8cfdcb634ff3cf0e3d9a3426e019e1c6469780a3b0020c9bc4ecc09cf9abcb1")
|
|
version("0.8", sha256="cf965c26a5430ba4cc53d61963f288edddcd77443aa4c85ce722aaf1e2f29513")
|
|
version("0.5", sha256="9209ac194a175aaab4381313891fba047cb173b2bdd15ac934f83f567f9cd514")
|
|
version("0.4", sha256="d0a533189ecd45a033b72e276fccaa2122cfd76de125e0a5e126bdea0fec2d24")
|
|
version("0.3", sha256="703149f5b39ead42cc734c03c7c4bd581fcad1c5a3939e7a4b5bc82f54c3c32a")
|
|
version("0.2", sha256="419f76ef723d21b72b704b2c4bf718dcd9d2ecd44cd28c8a71798389b7932ae5")
|
|
version("0.1", sha256="c69b06bfe03711e9d9d3f4d3f307d6dfd7e21d4864a053cca26296d5d05c175c")
|
|
|
|
depends_on("c", type="build") # generated
|
|
depends_on("cxx", type="build") # generated
|