Skip to content

Commit

Permalink
update mlir-aie (#461)
Browse files Browse the repository at this point in the history
update llvm to 641d160ad
update mlir-aie to 2903588
  • Loading branch information
fifield authored Feb 27, 2024
1 parent 7b39046 commit 1cff164
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion mlir/lib/Conversion/AIRToAIEPass.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,8 @@ AIE::BufferOp allocateBufferOp(uint64_t &BufferId, MemRefType memrefTy,
t = t->getNextNode();
builder.setInsertionPointAfter(t);
AIE::BufferOp bufferOp = builder.create<AIE::BufferOp>(
tile->getLoc(), memrefTy, tile, nullptr, nullptr);
tile->getLoc(), memrefTy, tile, /*sym_name*/ nullptr,
/*address*/ nullptr, /*initial_value*/ nullptr);

std::stringstream ss =
generateBufferNameInStringStream("buf", BufferId, attr, x, y);
Expand Down
2 changes: 1 addition & 1 deletion utils/clone-llvm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#
##===----------------------------------------------------------------------===##

export commithash=b45de48be24695b613f48ed21bb35f844454193b
export commithash=641d160ad236fb7a472a9eedbda2d62541e7dd0c
target_dir=llvm

# clone llvm if it is not there already
Expand Down
2 changes: 1 addition & 1 deletion utils/clone-mlir-aie.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#
##===----------------------------------------------------------------------===##

export HASH=d07ee8ee44b5f0fa9b48ceb0f38878cb71c6533f
export HASH=2903588040333ea31c7a21251ae83bc0293c879a
target_dir=mlir-aie

if [[ ! -d $target_dir ]]; then
Expand Down

0 comments on commit 1cff164

Please sign in to comment.