Skip to content
forked from iree-org/iree

Commit d7bf5df

Browse files
committed
feat(CUDA): add new target for testing
We want to try a simplified GPU pipeline for CUDA and test on top of it
1 parent 495474f commit d7bf5df

16 files changed

+2605
-0
lines changed

compiler/plugins/iree_compiler_plugin.cmake

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ if(IREE_INPUT_TOSA)
1717
endif()
1818

1919
if(IREE_TARGET_BACKEND_CUDA)
20+
add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/target/CellarCUDA target/CellarCUDA)
2021
add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/target/CUDA target/CUDA)
2122
endif()
2223

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
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+
)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
################################################################################
2+
# Autogenerated by build_tools/bazel_to_cmake/bazel_to_cmake.py from #
3+
# compiler/plugins/target/CellarCUDA/BUILD.bazel #
4+
# #
5+
# Use iree_cmake_extra_content from iree/build_defs.oss.bzl to add arbitrary #
6+
# CMake-only content. #
7+
# #
8+
# To disable autogeneration for this file entirely, delete this header. #
9+
################################################################################
10+
11+
iree_add_all_subdirs()
12+
13+
iree_compiler_register_plugin(
14+
PLUGIN_ID
15+
hal_target_cellar_cuda
16+
TARGET
17+
::CellarCUDA
18+
)
19+
20+
iree_cc_library(
21+
NAME
22+
CellarCUDA
23+
SRCS
24+
"CUDATarget.cpp"
25+
DEPS
26+
LLVMAnalysis
27+
LLVMBitReader
28+
LLVMBitWriter
29+
LLVMCore
30+
LLVMLinker
31+
LLVMMC
32+
LLVMNVPTXCodeGen
33+
LLVMNVPTXDesc
34+
LLVMNVPTXInfo
35+
LLVMPasses
36+
LLVMSupport
37+
LLVMTarget
38+
LLVMipo
39+
MLIRBuiltinToLLVMIRTranslation
40+
MLIRGPUDialect
41+
MLIRLLVMDialect
42+
MLIRLLVMToLLVMIRTranslation
43+
MLIRNVGPUDialect
44+
MLIRNVVMDialect
45+
MLIRNVVMToLLVMIRTranslation
46+
MLIRPass
47+
MLIRSupport
48+
MLIRTargetLLVMIRExport
49+
MLIRTransformDialect
50+
iree::base::internal::flatcc::building
51+
iree::compiler::Codegen
52+
iree::compiler::Codegen::Common
53+
iree::compiler::Codegen::Dialect::Codegen::IR::IREECodegenDialect
54+
iree::compiler::Codegen::Dialect::GPU::TargetUtils::KnownTargets
55+
iree::compiler::Codegen::LLVMGPU
56+
iree::compiler::Codegen::Utils
57+
iree::compiler::Dialect::HAL::Target
58+
iree::compiler::Dialect::HAL::Utils::ExecutableDebugInfoUtils
59+
iree::compiler::Dialect::HAL::Utils::LLVMLinkerUtils
60+
iree::compiler::PluginAPI
61+
iree::compiler::Utils
62+
iree::compiler::plugins::target::CellarCUDA::CodeGen
63+
iree::schemas::cuda_executable_def_c_fbs
64+
iree::schemas::executable_debug_info_c_fbs
65+
iree_cuda::libdevice_embedded
66+
PUBLIC
67+
)
68+
69+
### BAZEL_TO_CMAKE_PRESERVES_ALL_CONTENT_BELOW_THIS_LINE ###

0 commit comments

Comments
 (0)