Skip to content

Commit ac013c0

Browse files
author
Ivy Zhang
authored
Update LLVM Version (#276)
1 parent 3934bc8 commit ac013c0

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

cmake/llvm-version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8345289ded788f4df79f59df76df0c0437c3df64
1+
f06563a5c0d239a6b98f74db522681613254ad08

lib/gc/Transforms/LowerToTileVector.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -656,7 +656,8 @@ struct LowerToTileVectorPass
656656
// transpose or braodcast semantic etc.
657657
vector::populateVectorTransferPermutationMapLoweringPatterns(secondPattern);
658658
// Remove unnessary broadcast operation
659-
vector::populateSinkVectorBroadcastPatterns(secondPattern);
659+
// TODO: disable this pattern until the following support is ready
660+
// vector::populateSinkVectorBroadcastPatterns(secondPattern);
660661
// Second fold (with the help of the `applyPatternsAndFoldGreedily`
661662
// function) can help us to eliminate redundant operation like consecutive
662663
// read and write.

scripts/compile.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ build_llvm() {
163163
get_llvm() {
164164
if [ ! -z "$DEV_BUILD" ]; then
165165
mkdir -p "$EXTERNALS_DIR"
166+
cd "$EXTERNALS_DIR"
166167
build_llvm
167168
cd "$PROJECT_DIR"
168169
return 0

0 commit comments

Comments
 (0)