| # Copyright 2020 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 |
| |
| # Utilities for working with IREE MLIR types. |
| |
| load("//build_tools/bazel:build_defs.oss.bzl", "iree_compiler_cc_library") |
| |
| package( |
| default_visibility = ["//visibility:public"], |
| features = ["layering_check"], |
| licenses = ["notice"], # Apache 2.0 |
| ) |
| |
| iree_compiler_cc_library( |
| name = "Utils", |
| srcs = [ |
| "CPUUtils.cpp", |
| "GPUUtils.cpp", |
| "LinalgOpInfo.cpp", |
| "LinkingUtils.cpp", |
| "MarkerUtils.cpp", |
| "Utils.cpp", |
| ], |
| hdrs = [ |
| "CPUUtils.h", |
| "GPUUtils.h", |
| "LinalgOpInfo.h", |
| "LinkingUtils.h", |
| "MarkerUtils.h", |
| "Utils.h", |
| ], |
| deps = [ |
| "//compiler/src/iree/compiler/Codegen/Dialect/Codegen/IR:IREECodegenDialect", |
| "//compiler/src/iree/compiler/Codegen/Dialect/GPU/IR:IREEGPUDialect", |
| "//compiler/src/iree/compiler/Codegen/Dialect/GPU/TargetUtils:KnownTargets", |
| "//compiler/src/iree/compiler/Codegen/Interfaces:PartitionableLoopsInterface", |
| "//compiler/src/iree/compiler/Codegen/Interfaces:ProcessorOpInterfaces", |
| "//compiler/src/iree/compiler/Codegen/Interfaces:UKernelOpInterface", |
| "//compiler/src/iree/compiler/Dialect/Flow/IR", |
| "//compiler/src/iree/compiler/Dialect/HAL/IR", |
| "//compiler/src/iree/compiler/Dialect/LinalgExt/IR", |
| "//compiler/src/iree/compiler/Dialect/LinalgExt/Transforms", |
| "//compiler/src/iree/compiler/Utils", |
| "@llvm-project//llvm:Support", |
| "@llvm-project//llvm:TargetParser", |
| "@llvm-project//mlir:AffineDialect", |
| "@llvm-project//mlir:Analysis", |
| "@llvm-project//mlir:ArithDialect", |
| "@llvm-project//mlir:ArithUtils", |
| "@llvm-project//mlir:FuncDialect", |
| "@llvm-project//mlir:FunctionInterfaces", |
| "@llvm-project//mlir:GPUDialect", |
| "@llvm-project//mlir:IR", |
| "@llvm-project//mlir:LinalgDialect", |
| "@llvm-project//mlir:LinalgTransforms", |
| "@llvm-project//mlir:LinalgUtils", |
| "@llvm-project//mlir:MemRefDialect", |
| "@llvm-project//mlir:MemRefTransforms", |
| "@llvm-project//mlir:SCFDialect", |
| "@llvm-project//mlir:SCFTransforms", |
| "@llvm-project//mlir:SideEffectInterfaces", |
| "@llvm-project//mlir:Support", |
| "@llvm-project//mlir:TensorDialect", |
| "@llvm-project//mlir:TilingInterface", |
| "@llvm-project//mlir:TransformUtils", |
| "@llvm-project//mlir:VectorDialect", |
| "@llvm-project//mlir:VectorTransforms", |
| "@llvm-project//mlir:ViewLikeInterface", |
| ], |
| ) |
| |
| iree_compiler_cc_library( |
| name = "VectorOpUtils", |
| srcs = [ |
| "VectorOpUtils.cpp", |
| ], |
| hdrs = [ |
| "VectorOpUtils.h", |
| ], |
| deps = [ |
| "@llvm-project//llvm:Support", |
| "@llvm-project//mlir:IR", |
| "@llvm-project//mlir:LinalgDialect", |
| "@llvm-project//mlir:Support", |
| "@llvm-project//mlir:VectorDialect", |
| ], |
| ) |