Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update mlir-aie #403

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/buildAndTestNoRuntime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ jobs:
-DLLVM_EXTERNAL_LIT=`pwd`/../../llvm/build/bin/llvm-lit \
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON \
-DLibXAIE_x86_64_DIR=`pwd`/../../aienginev2/install/lib \
-DAIE_ENABLE_GENERATE_CDO_DIRECT=ON \
-DCMAKE_INSTALL_PREFIX=`pwd`/../install
ninja install
popd
Expand Down
6 changes: 3 additions & 3 deletions utils/clone-llvm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
#
##===----------------------------------------------------------------------===##

export commithash=0f80f5e362fb43a9335bd154c5f7976a96e32cfc
LLVM_PROJECT_COMMIT=7c03d5d41daad230406890499cf4fa14973ee5eb
branch=air

git clone --depth 1 https://github.com/llvm/llvm-project.git llvm
pushd llvm
git fetch --depth=1 origin $commithash
git checkout $commithash -b $branch
git fetch --depth=1 origin $LLVM_PROJECT_COMMIT
git checkout $LLVM_PROJECT_COMMIT -b $branch
# Make mlir_async_runtime library's symbol visible
# so that we can link to this library in channel sim tests
sed -i '/set_property(TARGET mlir_async_runtime PROPERTY CXX_VISIBILITY_PRESET hidden)/d' ./mlir/lib/ExecutionEngine/CMakeLists.txt
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=48329cab738a35d6fd8e8b9f86ddcf68b459a176
export HASH=c2fe3c71af3a90023dba0d0a9360c11a140330f2

git clone --depth 1 https://github.com/Xilinx/mlir-aie.git mlir-aie
pushd mlir-aie
Expand Down
1 change: 1 addition & 0 deletions utils/github-build-mlir-aie.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ cmake .. \
-DLLVM_EXTERNAL_LIT=`pwd`/../../llvm/build/bin/llvm-lit \
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON \
-DLibXAIE_x86_64_DIR=`pwd`/../../aienginev2/install/lib \
-DAIE_ENABLE_GENERATE_CDO_DIRECT=ON \
-DCMAKE_INSTALL_PREFIX=`pwd`/../$INSTALL_DIR

ec=$?
Expand Down
Loading