| # Copyright 2019 Google LLC |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # https://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| package( |
| default_visibility = ["//visibility:public"], |
| features = ["layering_check"], |
| licenses = ["notice"], # Apache 2.0 |
| ) |
| |
| cc_library( |
| name = "Transforms", |
| srcs = [ |
| "BenchmarkBatchDispatches.cpp", |
| "CSEVariableLoads.cpp", |
| "ConvertToHAL.cpp", |
| "IdentifyConstantPools.cpp", |
| "InlineDeviceSwitches.cpp", |
| "LinkExecutables.cpp", |
| "MaterializeConstantPoolBuffers.cpp", |
| "MaterializeInterfaces2.cpp", |
| "MaterializeResourceCaches.cpp", |
| "MemoizeDeviceQueries.cpp", |
| "PackAllocations.cpp", |
| "PackConstantPoolStorage.cpp", |
| "Passes.cpp", |
| "PropagateConstantWorkgroupInfo.cpp", |
| "PublicAbiGeneration.cpp", |
| "ResolveEntryPointOrdinals.cpp", |
| "SerializeExecutables.cpp", |
| "TranslateExecutables.cpp", |
| ], |
| hdrs = [ |
| "Passes.h", |
| ], |
| deps = [ |
| "//iree/compiler/Bindings/SIP/Utils", |
| "//iree/compiler/Dialect/Flow/IR", |
| "//iree/compiler/Dialect/HAL/Conversion", |
| "//iree/compiler/Dialect/HAL/Conversion/FlowToHAL", |
| "//iree/compiler/Dialect/HAL/Conversion/HALToHAL", |
| "//iree/compiler/Dialect/HAL/Conversion/IREEToHAL", |
| "//iree/compiler/Dialect/HAL/Conversion/StandardToHAL", |
| "//iree/compiler/Dialect/HAL/IR", |
| "//iree/compiler/Dialect/HAL/IR:HALDialect", |
| "//iree/compiler/Dialect/HAL/Target", |
| "//iree/compiler/Dialect/HAL/Utils", |
| "//iree/compiler/Dialect/IREE/Conversion:PreserveCompilerHints", |
| "//iree/compiler/Dialect/IREE/IR", |
| "//iree/compiler/Dialect/IREE/Transforms", |
| "//iree/compiler/Dialect/Shape/IR", |
| "//iree/compiler/Dialect/Shape/Transforms", |
| "@llvm-project//llvm:Support", |
| "@llvm-project//mlir:AffineToStandard", |
| "@llvm-project//mlir:IR", |
| "@llvm-project//mlir:Pass", |
| "@llvm-project//mlir:StandardOps", |
| "@llvm-project//mlir:Support", |
| "@llvm-project//mlir:Transforms", |
| "@mlir-hlo//:hlo", |
| ], |
| ) |