|
| 1 | +# Copyright 2022 The IREE Authors |
| 2 | +# |
| 3 | +# Licensed under the Apache License v2.0 with LLVM Exceptions. |
| 4 | +# See https://llvm.org/LICENSE.txt for license information. |
| 5 | +# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| 6 | + |
| 7 | +load("//build_tools/bazel:build_defs.oss.bzl", "iree_compiler_cc_library", "iree_compiler_register_plugin") |
| 8 | + |
| 9 | +package( |
| 10 | + default_visibility = ["//visibility:public"], |
| 11 | + features = ["layering_check"], |
| 12 | + licenses = ["notice"], # Apache 2.0 |
| 13 | +) |
| 14 | + |
| 15 | +iree_compiler_register_plugin( |
| 16 | + plugin_id = "hal_target_cellar_cuda", |
| 17 | + target = ":CellarCUDA", |
| 18 | +) |
| 19 | + |
| 20 | +iree_compiler_cc_library( |
| 21 | + name = "CellarCUDA", |
| 22 | + srcs = [ |
| 23 | + "CUDATarget.cpp", |
| 24 | + ], |
| 25 | + deps = [ |
| 26 | + "//compiler/plugins/target/CellarCUDA/CodeGen", |
| 27 | + "//compiler/src/iree/compiler/Codegen", |
| 28 | + "//compiler/src/iree/compiler/Codegen/Common", |
| 29 | + "//compiler/src/iree/compiler/Codegen/Dialect/Codegen/IR:IREECodegenDialect", |
| 30 | + "//compiler/src/iree/compiler/Codegen/Dialect/GPU/TargetUtils:KnownTargets", |
| 31 | + "//compiler/src/iree/compiler/Codegen/LLVMGPU", |
| 32 | + "//compiler/src/iree/compiler/Codegen/Utils", |
| 33 | + "//compiler/src/iree/compiler/Dialect/HAL/Target", |
| 34 | + "//compiler/src/iree/compiler/Dialect/HAL/Utils:ExecutableDebugInfoUtils", |
| 35 | + "//compiler/src/iree/compiler/Dialect/HAL/Utils:LLVMLinkerUtils", |
| 36 | + "//compiler/src/iree/compiler/PluginAPI", |
| 37 | + "//compiler/src/iree/compiler/Utils", |
| 38 | + "//runtime/src/iree/base/internal/flatcc:building", |
| 39 | + "//runtime/src/iree/schemas:cuda_executable_def_c_fbs", |
| 40 | + "//runtime/src/iree/schemas:executable_debug_info_c_fbs", |
| 41 | + "@iree_cuda//:libdevice_embedded", |
| 42 | + "@llvm-project//llvm:Analysis", |
| 43 | + "@llvm-project//llvm:BitReader", |
| 44 | + "@llvm-project//llvm:BitWriter", |
| 45 | + "@llvm-project//llvm:Core", |
| 46 | + "@llvm-project//llvm:IPO", |
| 47 | + "@llvm-project//llvm:Linker", |
| 48 | + "@llvm-project//llvm:MC", |
| 49 | + "@llvm-project//llvm:NVPTXCodeGen", |
| 50 | + "@llvm-project//llvm:NVPTXInfo", |
| 51 | + "@llvm-project//llvm:NVPTXUtilsAndDesc", |
| 52 | + "@llvm-project//llvm:Passes", |
| 53 | + "@llvm-project//llvm:Support", |
| 54 | + "@llvm-project//llvm:Target", |
| 55 | + "@llvm-project//mlir:BuiltinToLLVMIRTranslation", |
| 56 | + "@llvm-project//mlir:GPUDialect", |
| 57 | + "@llvm-project//mlir:LLVMDialect", |
| 58 | + "@llvm-project//mlir:LLVMToLLVMIRTranslation", |
| 59 | + "@llvm-project//mlir:NVGPUDialect", |
| 60 | + "@llvm-project//mlir:NVVMDialect", |
| 61 | + "@llvm-project//mlir:NVVMToLLVMIRTranslation", |
| 62 | + "@llvm-project//mlir:Pass", |
| 63 | + "@llvm-project//mlir:Support", |
| 64 | + "@llvm-project//mlir:ToLLVMIRTranslation", |
| 65 | + "@llvm-project//mlir:TransformDialect", |
| 66 | + ], |
| 67 | +) |
0 commit comments