summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/intel-oneapi-dpct/package.py
blob: 116fbcbdff1574d2bd82d2379bc0cb95bf78d93c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# 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)

import platform

from spack.package import *


@IntelOneApiPackage.update_description
class IntelOneapiDpct(IntelOneApiPackage):
    """The Intel DPC++ Compatibility Tool assists in migrating your
       existing CUDA code to SYCL code. The tool ports both CUDA
       language kernels and library API calls. Typically, 90%-95% of
       CUDA code automatically migrates to SYCL code.

    """

    maintainers = ['rscohn2']

    homepage = 'https://www.intel.com/content/www/us/en/developer/tools/oneapi/dpc-compatibility-tool.html#gs.2p8km6'

    if platform.system() == 'Linux':
        version('2022.1.0',
                url='https://registrationcenter-download.intel.com/akdlm/irc_nas/18746/l_dpcpp-ct_p_2022.1.0.172_offline.sh',
                sha256='ec42f4df3f9daf1af587b14b8b6644c773a0b270e03dd22ac9e2f49131e3e40c',
                expand=False)

    @property
    def component_dir(self):
        return 'dpcpp-ct'