Skip to content

Commit 30bc552

Browse files
committed
[CI] Update repository name to hcl-dialect
1 parent 4a2ada3 commit 30bc552

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
version: 2
66
jobs:
77
build:
8-
working_directory: ~/hcl-dialect-prototype
8+
working_directory: ~/hcl-dialect
99
docker:
1010
- image: zzzdavid/llvm-project:15.0.0
1111
auth:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ git checkout tags/llvmorg-15.0.0
7474
### Build HeteroCL Dialect
7575
This setup assumes that you have built LLVM and MLIR in `$LLVM_BUILD_DIR`. Please firstly clone our repository.
7676
```sh
77-
git clone --recursive https://github.com/cornell-zhang/hcl-dialect-prototype.git
78-
cd hcl-dialect-prototype
77+
git clone --recursive git@github.com:cornell-zhang/hcl-dialect.git
78+
cd hcl-dialect
7979
mkdir build && cd build
8080
```
8181

docker/demo.dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,16 +38,16 @@ RUN cd /root/ && git clone https://github.com/llvm/llvm-project.git && \
3838
RUN cd /root/ && export TOKEN="Username:PersonalToken" && \
3939
export BUILD_DIR=/root/llvm-project/build && \
4040
export PREFIX=/root/llvm-project/build && \
41-
git clone --recursive https://[email protected]/cornell-zhang/hcl-dialect-prototype.git && \
42-
cd hcl-dialect-prototype && mkdir build && cd build && \
41+
git clone --recursive https://[email protected]/cornell-zhang/hcl-dialect.git && \
42+
cd hcl-dialect && mkdir build && cd build && \
4343
cmake -G "Unix Makefiles" .. \
4444
-DMLIR_DIR=$PREFIX/lib/cmake/mlir \
4545
-DLLVM_EXTERNAL_LIT=$BUILD_DIR/bin/llvm-lit \
4646
-DPYTHON_BINDING=ON \
4747
-DPython3_EXECUTABLE=`which python3` && \
4848
make -j`nproc`
49-
ENV PYTHONPATH /root/hcl-dialect-prototype/build/tools/hcl/python_packages/hcl_core:${PYTHONPATH}
49+
ENV PYTHONPATH /root/hcl-dialect/build/tools/hcl/python_packages/hcl_core:${PYTHONPATH}
5050

5151
# test
52-
RUN cd /root/hcl-dialect-prototype/build && \
52+
RUN cd /root/hcl-dialect/build && \
5353
cmake --build . --target check-hcl

lib/Transforms/LoopTransformations.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3030,7 +3030,7 @@ LogicalResult runOutline(ModuleOp &mod, func::FuncOp &f, OutlineOp &outlineOp) {
30303030
targetLoadOp->setAttr("map", AffineMapAttr::get(map));
30313031
if (isMod) {
30323032
// See the issue:
3033-
// https://github.com/cornell-zhang/hcl-dialect-prototype/issues/127
3033+
// https://github.com/cornell-zhang/hcl-dialect/issues/127
30343034
OpBuilder builder(targetLoadOp);
30353035
SmallVector<Value> indices(targetLoadOp.getIndices());
30363036
int pos = -1;

0 commit comments

Comments
 (0)