Skip to content

Commit

Permalink
Rename header file
Browse files Browse the repository at this point in the history
  • Loading branch information
fifield committed Sep 10, 2024
1 parent 0c7c9d5 commit ca65f4b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions python/PyTypes.h → include/aie/Bindings/PyTypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
// (c) Copyright 2024 Advanced Micro Devices, Inc.
//
//===----------------------------------------------------------------------===//
#ifndef AIE_PYTYPES_H
#define AIE_PYTYPES_H
#ifndef AIE_BINDINGS_PYTYPES_H
#define AIE_BINDINGS_PYTYPES_H

#include "aie-c/TargetModel.h"

Expand All @@ -22,4 +22,4 @@ class PyAieTargetModel {
AieTargetModel model;
};

#endif // AIE_PYTYPES_H
#endif // AIE_BINDINGS_PYTYPES_H
2 changes: 1 addition & 1 deletion python/AIEMLIRModule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#include "aie-c/TargetModel.h"
#include "aie-c/Translation.h"

#include "PyTypes.h"
#include "aie/Bindings/PyTypes.h"

#include "mlir-c/IR.h"
#include "mlir-c/Support.h"
Expand Down
2 changes: 1 addition & 1 deletion python/AIERTXModule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#include "aie-c/TargetModel.h"
#include "aie-c/Translation.h"

#include "PyTypes.h"
#include "aie/Bindings/PyTypes.h"

#include <pybind11/pybind11.h>
#include <pybind11/pytypes.h>
Expand Down

0 comments on commit ca65f4b

Please sign in to comment.