From 0196b85f7c24c4bf1814dc7f8c32922653dd12a8 Mon Sep 17 00:00:00 2001 From: Quinn Dawkins Date: Thu, 23 May 2024 17:16:43 -0400 Subject: [PATCH] [Codegen][GPU] Drop dead PassDetail.h file (#17490) This file became unused after https://github.com/iree-org/iree/commit/d657082cf --- .../compiler/Codegen/Common/GPU/BUILD.bazel | 1 - .../Codegen/Common/GPU/CMakeLists.txt | 1 - .../compiler/Codegen/Common/GPU/PassDetail.h | 31 ------------------- 3 files changed, 33 deletions(-) delete mode 100644 compiler/src/iree/compiler/Codegen/Common/GPU/PassDetail.h diff --git a/compiler/src/iree/compiler/Codegen/Common/GPU/BUILD.bazel b/compiler/src/iree/compiler/Codegen/Common/GPU/BUILD.bazel index 7fa1ba3a7772f..ac6d21a243d42 100644 --- a/compiler/src/iree/compiler/Codegen/Common/GPU/BUILD.bazel +++ b/compiler/src/iree/compiler/Codegen/Common/GPU/BUILD.bazel @@ -28,7 +28,6 @@ iree_gentbl_cc_library( iree_compiler_cc_library( name = "PassHeaders", hdrs = [ - "PassDetail.h", "Passes.h", "Passes.h.inc", ], diff --git a/compiler/src/iree/compiler/Codegen/Common/GPU/CMakeLists.txt b/compiler/src/iree/compiler/Codegen/Common/GPU/CMakeLists.txt index 08c707b3d6939..926c9b76133e5 100644 --- a/compiler/src/iree/compiler/Codegen/Common/GPU/CMakeLists.txt +++ b/compiler/src/iree/compiler/Codegen/Common/GPU/CMakeLists.txt @@ -23,7 +23,6 @@ iree_cc_library( NAME PassHeaders HDRS - "PassDetail.h" "Passes.h" "Passes.h.inc" DEPS diff --git a/compiler/src/iree/compiler/Codegen/Common/GPU/PassDetail.h b/compiler/src/iree/compiler/Codegen/Common/GPU/PassDetail.h deleted file mode 100644 index 70fc50c2f68d2..0000000000000 --- a/compiler/src/iree/compiler/Codegen/Common/GPU/PassDetail.h +++ /dev/null @@ -1,31 +0,0 @@ -// Copyright 2023 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 - -#ifndef IREE_COMPILER_CODEGEN_COMMON_GPU_PASS_DETAIL_H_ -#define IREE_COMPILER_CODEGEN_COMMON_GPU_PASS_DETAIL_H_ - -#include "iree/compiler/Codegen/Dialect/Codegen/IR/IREECodegenDialect.h" -#include "iree/compiler/Dialect/HAL/IR/HALOps.h" -#include "mlir/Dialect/Affine/IR/AffineOps.h" -#include "mlir/Dialect/Bufferization/IR/Bufferization.h" -#include "mlir/Dialect/GPU/IR/GPUDialect.h" -#include "mlir/Dialect/Linalg/IR/Linalg.h" -#include "mlir/Dialect/MemRef/IR/MemRef.h" -#include "mlir/Dialect/NVGPU/IR/NVGPUDialect.h" -#include "mlir/Dialect/SCF/IR/SCF.h" -#include "mlir/Dialect/Tensor/IR/Tensor.h" -#include "mlir/Dialect/Vector/IR/VectorOps.h" -#include "mlir/Interfaces/FunctionInterfaces.h" -#include "mlir/Pass/Pass.h" - -namespace mlir::iree_compiler { - -#define GEN_PASS_CLASSES -#include "iree/compiler/Codegen/Common/GPU/Passes.h.inc" - -} // namespace mlir::iree_compiler - -#endif // IREE_COMPILER_CODEGEN_COMMON_GPU_PASS_DETAIL_H_