|  | # Copyright 2022 The IREE Authors | 
|  | # | 
|  | # Licensed under the Apache License v2.0 with LLVM Exceptions. | 
|  | # See https://llvm.org/LICENSE.txt for license information. | 
|  | # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | 
|  |  | 
|  | load("//build_tools/bazel:build_defs.oss.bzl", "iree_compiler_cc_library", "iree_compiler_register_plugin") | 
|  |  | 
|  | package( | 
|  | default_visibility = ["//visibility:public"], | 
|  | features = ["layering_check"], | 
|  | licenses = ["notice"],  # Apache 2.0 | 
|  | ) | 
|  |  | 
|  | iree_compiler_register_plugin( | 
|  | plugin_id = "hal_target_cuda", | 
|  | target = ":CUDA", | 
|  | ) | 
|  |  | 
|  | iree_compiler_cc_library( | 
|  | name = "CUDA", | 
|  | srcs = [ | 
|  | "CUDATarget.cpp", | 
|  | ], | 
|  | deps = [ | 
|  | "//compiler/src/iree/compiler/Codegen", | 
|  | "//compiler/src/iree/compiler/Codegen/Common", | 
|  | "//compiler/src/iree/compiler/Codegen/Dialect/Codegen/IR:IREECodegenDialect", | 
|  | "//compiler/src/iree/compiler/Codegen/Dialect/GPU/TargetUtils:KnownTargets", | 
|  | "//compiler/src/iree/compiler/Codegen/LLVMGPU", | 
|  | "//compiler/src/iree/compiler/Codegen/Utils", | 
|  | "//compiler/src/iree/compiler/Dialect/HAL/Target", | 
|  | "//compiler/src/iree/compiler/Dialect/HAL/Utils:ExecutableDebugInfoUtils", | 
|  | "//compiler/src/iree/compiler/Dialect/HAL/Utils:LLVMLinkerUtils", | 
|  | "//compiler/src/iree/compiler/PluginAPI", | 
|  | "//compiler/src/iree/compiler/Utils", | 
|  | "//runtime/src/iree/base/internal/flatcc:building", | 
|  | "//runtime/src/iree/schemas:cuda_executable_def_c_fbs", | 
|  | "//runtime/src/iree/schemas:executable_debug_info_c_fbs", | 
|  | "@iree_cuda//:libdevice_embedded", | 
|  | "@llvm-project//llvm:Analysis", | 
|  | "@llvm-project//llvm:BitReader", | 
|  | "@llvm-project//llvm:BitWriter", | 
|  | "@llvm-project//llvm:Core", | 
|  | "@llvm-project//llvm:IPO", | 
|  | "@llvm-project//llvm:Linker", | 
|  | "@llvm-project//llvm:MC", | 
|  | "@llvm-project//llvm:NVPTXCodeGen", | 
|  | "@llvm-project//llvm:NVPTXInfo", | 
|  | "@llvm-project//llvm:NVPTXUtilsAndDesc", | 
|  | "@llvm-project//llvm:Passes", | 
|  | "@llvm-project//llvm:Support", | 
|  | "@llvm-project//llvm:Target", | 
|  | "@llvm-project//mlir:BuiltinToLLVMIRTranslation", | 
|  | "@llvm-project//mlir:GPUDialect", | 
|  | "@llvm-project//mlir:LLVMDialect", | 
|  | "@llvm-project//mlir:LLVMToLLVMIRTranslation", | 
|  | "@llvm-project//mlir:NVGPUDialect", | 
|  | "@llvm-project//mlir:NVVMDialect", | 
|  | "@llvm-project//mlir:NVVMToLLVMIRTranslation", | 
|  | "@llvm-project//mlir:Pass", | 
|  | "@llvm-project//mlir:Support", | 
|  | "@llvm-project//mlir:ToLLVMIRTranslation", | 
|  | "@llvm-project//mlir:TransformDialect", | 
|  | ], | 
|  | ) |