Merge pull request #5 from tjingrant/update-buildbot
Use llvm-project we know that works.
This commit is contained in:
commit
7c1dd0279b
|
@ -18,7 +18,7 @@ jobs:
|
||||||
git submodule update --init --recursive
|
git submodule update --init --recursive
|
||||||
# Use cached mlir installation if possible.
|
# Use cached mlir installation if possible.
|
||||||
- restore_cache:
|
- restore_cache:
|
||||||
key: V6-LLVM-PROJECT-{{ arch }}
|
key: V9-LLVM-PROJECT-{{ arch }}
|
||||||
- run:
|
- run:
|
||||||
name: Install MLIR
|
name: Install MLIR
|
||||||
command: |
|
command: |
|
||||||
|
@ -29,7 +29,7 @@ jobs:
|
||||||
source ONNF/utils/install-mlir.sh
|
source ONNF/utils/install-mlir.sh
|
||||||
fi
|
fi
|
||||||
- save_cache:
|
- save_cache:
|
||||||
key: V6-LLVM-PROJECT-{{ arch }}
|
key: V9-LLVM-PROJECT-{{ arch }}
|
||||||
paths:
|
paths:
|
||||||
- llvm-project
|
- llvm-project
|
||||||
- run:
|
- run:
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# ONNF
|
# ONNF
|
||||||
Open Neural Network Frontend : an ONNX frontend for MLIR.
|
Open Neural Network Frontend : an ONNX frontend for MLIR.
|
||||||
|
|
||||||
[![CircleCI](https://circleci.com/gh/clang-ykt/ONNF.svg?style=svg)](https://circleci.com/gh/clang-ykt/ONNF)
|
[![CircleCI](https://circleci.com/gh/onnx/onnx-mlir/tree/master.svg?style=svg)](https://circleci.com/gh/onnx/onnx-mlir/tree/master)
|
||||||
|
|
||||||
## Prerequisites
|
## Prerequisites
|
||||||
|
|
||||||
|
@ -18,6 +18,8 @@ Firstly, install MLIR (as a part of LLVM-Project):
|
||||||
[same-as-file]: <> (utils/install-mlir.sh)
|
[same-as-file]: <> (utils/install-mlir.sh)
|
||||||
``` bash
|
``` bash
|
||||||
git clone https://github.com/llvm/llvm-project.git
|
git clone https://github.com/llvm/llvm-project.git
|
||||||
|
# Check out a specific branch that is known to work with ONNF.
|
||||||
|
cd llvm-project && git checkout 076475713c236081a3247a53e9dbab9043c3eac2 && cd ..
|
||||||
mkdir llvm-project/build
|
mkdir llvm-project/build
|
||||||
cd llvm-project/build
|
cd llvm-project/build
|
||||||
cmake -G Ninja ../llvm \
|
cmake -G Ninja ../llvm \
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
git clone https://github.com/llvm/llvm-project.git
|
git clone https://github.com/llvm/llvm-project.git
|
||||||
|
# Check out a specific branch that is known to work with ONNF.
|
||||||
|
cd llvm-project && git checkout 076475713c236081a3247a53e9dbab9043c3eac2 && cd ..
|
||||||
mkdir llvm-project/build
|
mkdir llvm-project/build
|
||||||
cd llvm-project/build
|
cd llvm-project/build
|
||||||
cmake -G Ninja ../llvm \
|
cmake -G Ninja ../llvm \
|
||||||
|
|
Loading…
Reference in New Issue