blob: cc8a52e851718cc708aaa965490e23eb08ef30c8 [file] [log] [blame]
load("@llvm-project//mlir:tblgen.bzl", "gentbl_cc_library")
load(
"//tensorflow/core/platform/default:cuda_build_defs.bzl",
"if_cuda_is_configured",
)
load(
"@local_config_rocm//rocm:build_defs.bzl",
"if_rocm_is_configured",
)
load("//tensorflow:tensorflow.bzl", "get_compatible_with_cloud")
package(
default_visibility = ["//tensorflow/compiler/mlir/tools/kernel_gen:friends"],
licenses = ["notice"],
)
cc_library(
name = "utils",
srcs = ["utils.cc"],
hdrs = ["utils.h"],
compatible_with = get_compatible_with_cloud(),
deps = [
"@llvm-project//llvm:Support",
"@llvm-project//mlir:FuncDialect",
"@llvm-project//mlir:IR",
"@llvm-project//mlir:LLVMDialect",
"@llvm-project//mlir:Transforms",
],
)
cc_library(
name = "tf_framework_legalize_to_llvm",
srcs = ["tf_framework_legalize_to_llvm.cc"],
hdrs = ["rewriters.h"],
compatible_with = get_compatible_with_cloud(),
deps = [
":utils",
"//tensorflow/compiler/mlir/tools/kernel_gen/ir:tf_framework_ops",
"@llvm-project//llvm:Support",
"@llvm-project//mlir:FuncDialect",
"@llvm-project//mlir:IR",
"@llvm-project//mlir:LLVMCommonConversion",
"@llvm-project//mlir:LLVMDialect",
"@llvm-project//mlir:LLVMTransforms",
"@llvm-project//mlir:Transforms",
],
)
cc_library(
name = "bufferize",
srcs = ["bufferize.cc"],
hdrs = ["rewriters.h"],
compatible_with = get_compatible_with_cloud(),
deps = [
"//tensorflow/compiler/mlir/hlo",
"//tensorflow/compiler/mlir/tools/kernel_gen/ir:tf_framework_ops",
"@llvm-project//mlir:ArithmeticDialect",
"@llvm-project//mlir:BufferizationTransforms",
"@llvm-project//mlir:ComplexDialect",
"@llvm-project//mlir:FuncDialect",
"@llvm-project//mlir:IR",
"@llvm-project//mlir:MemRefDialect",
"@llvm-project//mlir:SCFDialect",
"@llvm-project//mlir:Transforms",
],
)
cc_library(
name = "bufferize_tiled_loop",
srcs = ["bufferize_tiled_loop.cc"],
hdrs = ["rewriters.h"],
compatible_with = get_compatible_with_cloud(),
deps = [
"//tensorflow/compiler/mlir/hlo",
"//tensorflow/compiler/mlir/hlo:gml_st",
"//tensorflow/compiler/mlir/tools/kernel_gen/ir:tf_framework_ops",
"@llvm-project//mlir:BufferizationDialect",
"@llvm-project//mlir:BufferizationTransforms",
"@llvm-project//mlir:FuncDialect",
"@llvm-project//mlir:IR",
"@llvm-project//mlir:LinalgOps",
"@llvm-project//mlir:LinalgTransforms",
"@llvm-project//mlir:MemRefDialect",
"@llvm-project//mlir:SCFDialect",
"@llvm-project//mlir:TensorDialect",
"@llvm-project//mlir:Transforms",
],
)
cc_library(
name = "embed_tf_framework",
srcs = ["embed_tf_framework.cc"],
hdrs = ["rewriters.h"],
compatible_with = get_compatible_with_cloud(),
deps = [
"//tensorflow/compiler/mlir/tools/kernel_gen/ir:tf_framework_ops",
"@llvm-project//mlir:ControlFlowOps",
"@llvm-project//mlir:FuncDialect",
"@llvm-project//mlir:IR",
"@llvm-project//mlir:MemRefDialect",
"@llvm-project//mlir:Transforms",
],
)
gentbl_cc_library(
name = "kernel_gen_passes_inc_gen",
compatible_with = get_compatible_with_cloud(),
tbl_outs = [(
[
"-gen-pass-decls",
"-name=KernelGen",
],
"kernel_gen_passes.h.inc",
)],
tblgen = "@llvm-project//mlir:mlir-tblgen",
td_file = "passes.td",
deps = ["@llvm-project//mlir:PassBaseTdFiles"],
)
cc_library(
name = "gpu_passes",
srcs = [
"gpu_kernel_to_blob_pass.cc",
"kernel_lowering_passes.cc",
"map_parallel_loops_to_gpu.cc",
"tf_kernel_to_llvm_pass.cc",
],
hdrs = ["passes.h"],
copts = if_cuda_is_configured(["-DGOOGLE_CUDA=1"]) + if_rocm_is_configured(["-DTENSORFLOW_USE_ROCM=1"]),
deps = [
":embed_tf_framework",
":kernel_gen_passes_inc_gen",
"@llvm-project//llvm:Support",
"@llvm-project//llvm:TransformUtils",
"@llvm-project//mlir:ArithmeticDialect",
"@llvm-project//mlir:ArithmeticToLLVM",
"@llvm-project//mlir:ArithmeticTransforms",
"@llvm-project//mlir:ControlFlowOps",
"@llvm-project//mlir:ControlFlowToLLVM",
"@llvm-project//mlir:MathToLibm",
"@llvm-project//mlir:MathToLLVM",
"@llvm-project//mlir:MemRefDialect",
"@llvm-project//mlir:Affine",
"@llvm-project//mlir:ComplexDialect",
"@llvm-project//mlir:ComplexToLLVM",
"@llvm-project//mlir:FuncDialect",
"@llvm-project//mlir:GPUDialect",
"@llvm-project//mlir:GPUToGPURuntimeTransforms",
"@llvm-project//mlir:GPUToNVVMTransforms",
"@llvm-project//mlir:GPUToROCDLTransforms",
"@llvm-project//mlir:GPUTransforms",
"@llvm-project//mlir:IR",
"@llvm-project//mlir:LLVMDialect",
"@llvm-project//mlir:LLVMTransforms",
"@llvm-project//mlir:LinalgOps",
"@llvm-project//mlir:LinalgTransforms",
"@llvm-project//mlir:MathDialect",
"@llvm-project//mlir:MemRefToLLVM",
"@llvm-project//mlir:MemRefTransforms",
"@llvm-project//mlir:NVVMDialect",
"@llvm-project//mlir:NVVMToLLVMIRTranslation", # buildcleaner: keep
"@llvm-project//mlir:ReconcileUnrealizedCasts",
"@llvm-project//mlir:Pass",
"@llvm-project//mlir:LLVMCommonConversion",
"@llvm-project//mlir:ROCDLDialect",
"@llvm-project//mlir:ROCDLToLLVMIRTranslation", # buildcleaner: keep
"@llvm-project//mlir:SCFDialect",
"@llvm-project//mlir:SCFTransforms",
"@llvm-project//mlir:SCFToStandard",
"@llvm-project//mlir:Shape",
"@llvm-project//mlir:ShapeToStandard",
"@llvm-project//mlir:ShapeTransforms",
"@llvm-project//mlir:StandardOpsTransforms",
"@llvm-project//mlir:Support",
"@llvm-project//mlir:TensorDialect",
"@llvm-project//mlir:TensorTransforms",
"@llvm-project//mlir:ToLLVMIRTranslation",
"@llvm-project//mlir:Transforms",
"@llvm-project//mlir:VectorOps",
"@llvm-project//mlir:VectorToLLVM",
"@llvm-project//mlir:VectorTransforms",
"//tensorflow/compiler/mlir/hlo",
"//tensorflow/compiler/mlir/hlo:hlo_legalize_to_memref",
"//tensorflow/compiler/mlir/hlo:lhlo",
"//tensorflow/compiler/mlir/hlo:gml_st",
"//tensorflow/compiler/mlir/hlo:type_conversion",
"//tensorflow/compiler/mlir/tensorflow",
"//tensorflow/compiler/mlir/tools/kernel_gen/ir:tf_framework_ops",
"//tensorflow/compiler/xla/service/gpu/llvm_gpu_backend",
"//tensorflow/compiler/xla/service/gpu:gpu_asm_opts_util",
"//tensorflow/compiler/xla/service/gpu:target_constants",
"//tensorflow/compiler/xla/service:hlo_module_config",
"//tensorflow/compiler/xla:debug_options_flags",
"//tensorflow/core:lib",
] + if_cuda_is_configured([
"//tensorflow/core/platform:cuda_libdevice_path",
"//tensorflow/stream_executor/gpu:asm_compiler",
]) + if_rocm_is_configured([
"//tensorflow/stream_executor/gpu:asm_compiler",
"//tensorflow/core/platform:rocm_rocdl_path",
]),
)
cc_library(
name = "passes",
srcs = [
"buffer_reuse_pass.cc",
"bufferize_pass.cc",
"convert_to_signless_pass.cc",
"copy_cleanup_pass.cc",
"embed_memref_prints.cc",
"embed_tf_framework_pass.cc",
"fuse_inner_parallel_loops_pass.cc",
"parallel_loops_to_sequential.cc",
"rewrite_tf_framework_assert.cc",
"same_shape_propagation.cc",
"shape_to_descriptors_pass.cc",
"tensorflow_abi_knowledge_propagation.cc",
"tf_to_jit_invocations.cc",
"vectorization_pass.cc",
],
hdrs = ["passes.h"],
compatible_with = get_compatible_with_cloud(),
deps = [
":bufferize", # buildcleaner: keep
":bufferize_tiled_loop", # buildcleaner: keep
":embed_tf_framework", # buildcleaner: keep
":kernel_gen_passes_inc_gen",
":tf_framework_legalize_to_llvm", # buildcleaner: keep
":utils",
"//tensorflow/compiler/mlir/hlo",
"//tensorflow/compiler/mlir/hlo:gml_st",
"//tensorflow/compiler/mlir/hlo:hlo_legalize_to_memref",
"//tensorflow/compiler/mlir/hlo:lhlo",
"//tensorflow/compiler/mlir/hlo:type_conversion",
"//tensorflow/compiler/mlir/tensorflow",
"//tensorflow/compiler/mlir/tools/kernel_gen/ir:tf_framework_ops",
"@llvm-project//llvm:Support",
"@llvm-project//mlir:Affine",
"@llvm-project//mlir:Analysis",
"@llvm-project//mlir:ArithmeticDialect",
"@llvm-project//mlir:ArithmeticTransforms",
"@llvm-project//mlir:BufferizationDialect",
"@llvm-project//mlir:BufferizationTransforms",
"@llvm-project//mlir:ComplexDialect",
"@llvm-project//mlir:ControlFlowOps",
"@llvm-project//mlir:FuncDialect",
"@llvm-project//mlir:GPUDialect",
"@llvm-project//mlir:IR",
"@llvm-project//mlir:LLVMDialect",
"@llvm-project//mlir:LinalgOps",
"@llvm-project//mlir:LinalgTransforms",
"@llvm-project//mlir:MathDialect",
"@llvm-project//mlir:MemRefDialect",
"@llvm-project//mlir:Pass",
"@llvm-project//mlir:SCFDialect",
"@llvm-project//mlir:SCFToStandard",
"@llvm-project//mlir:SCFTransforms",
"@llvm-project//mlir:Shape",
"@llvm-project//mlir:ShapeToStandard",
"@llvm-project//mlir:ShapeTransforms",
"@llvm-project//mlir:StandardOpsTransforms",
"@llvm-project//mlir:Support",
"@llvm-project//mlir:TensorDialect",
"@llvm-project//mlir:TensorTransforms",
"@llvm-project//mlir:Transforms",
"@llvm-project//mlir:VectorOps",
"@llvm-project//mlir:VectorTransforms",
],
)