Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
fifield committed Sep 11, 2024
1 parent e6a1955 commit a610174
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//===- AIEToTransaction.h ---------------------------------------*- C++ -*-===//
//===- AIEToConfiguration.h -------------------------------------*- C++ -*-===//
//
// This file is licensed under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
Expand All @@ -8,8 +8,8 @@
//
//===----------------------------------------------------------------------===//

#ifndef AIE_CONVERSION_AIETOTRANSACTION_AIETOTRANSACTION_H
#define AIE_CONVERSION_AIETOTRANSACTION_AIETOTRANSACTION_H
#ifndef AIE_CONVERSION_AIETOCONFIGURATION_AIETOCONFIGURATION_H
#define AIE_CONVERSION_AIETOCONFIGURATION_AIETOCONFIGURATION_H

#include "aie/Dialect/AIE/IR/AIEDialect.h"
#include "aie/Dialect/AIEX/IR/AIEXDialect.h"
Expand All @@ -25,4 +25,4 @@ createConvertAIEToTransactionPass();

} // namespace xilinx::AIE

#endif // AIE_CONVERSION_AIETOTRANSACTION_AIETOTRANSACTION_H
#endif // AIE_CONVERSION_AIETOCONFIGURATION_AIETOCONFIGURATION_H
2 changes: 1 addition & 1 deletion include/aie/Conversion/Passes.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#ifndef AIE_CONVERSION_PASSES_H
#define AIE_CONVERSION_PASSES_H

#include "aie/Conversion/AIEToTransaction/AIEToTransaction.h"
#include "aie/Conversion/AIEToConfiguration/AIEToConfiguration.h"
#include "aie/Conversion/AIEVecToLLVM/AIEVecToLLVM.h"
#include "aie/Conversion/PassesEnums.h.inc"

Expand Down
2 changes: 1 addition & 1 deletion lib/CAPI/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ add_mlir_public_c_api_library(AIECAPI
AIEX
AIEXTransforms
AIEXUtils
MLIRAIEToTransaction
MLIRAIEToConfiguration
MLIRAIEVecDialect
MLIRAIEVecAIE1Dialect
MLIRAIEVecToLLVM
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//===- AIEToTransaction.h ---------------------------------------*- C++ -*-===//
//===- AIEToConfiguration.h -------------------------------------*- C++ -*-===//
//
// This file is licensed under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
Expand All @@ -10,14 +10,14 @@

#include "../PassDetail.h"

#include "aie/Conversion/AIEToTransaction/AIEToTransaction.h"
#include "aie/Conversion/AIEToConfiguration/AIEToConfiguration.h"
#include "aie/Targets/AIERTX.h"

#include "llvm/Support/Debug.h"

#include <vector>

#define DEBUG_TYPE "aie-convert-to-transaction"
#define DEBUG_TYPE "aie-convert-to-config"

using namespace mlir;
using namespace xilinx;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#
# (c) Copyright 2024 Advanced Micro Devices, Inc.
add_mlir_conversion_library(MLIRAIEToTransaction
AIEToTransaction.cpp
add_mlir_conversion_library(MLIRAIEToConfiguration
AIEToConfiguration.cpp

ADDITIONAL_HEADER_DIRS
$(CMAKE_CURRENT_SRC_DIR)/../../../../include/aie/Conversion/AIEToTransaction
$(CMAKE_CURRENT_SRC_DIR)/../../../../include/aie/Conversion/AIEToConfiguration

DEPENDS
MLIRAIEConversionPassIncGen
Expand Down
2 changes: 1 addition & 1 deletion lib/Conversion/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#
# (c) Copyright 2024 Advanced Micro Devices, Inc.
add_subdirectory(AIEToTransaction)
add_subdirectory(AIEToConfiguration)
add_subdirectory(AIEVecToLLVM)
2 changes: 1 addition & 1 deletion tools/aie-opt/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ set(LIBS
AIEX
AIEXTransforms
AIEXUtils
MLIRAIEToTransaction
MLIRAIEToConfiguration
MLIRAIEVecDialect
MLIRAIEVecAIE1Dialect
MLIRAIEVecTransformOps
Expand Down

0 comments on commit a610174

Please sign in to comment.