Update README.md

This commit is contained in:
Jaewon Lee 2024-06-23 11:24:10 -04:00 committed by GitHub
parent 02091f3d44
commit 3d98121ab6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -56,8 +56,8 @@ More detailed build instructions can be found [here](docs/install_vortex.md).
```
### Install Vortex codebase
```
git clone --depth=1 --recursive git@github.com:gthparch/vortex_vm.git
cd vortex_vm
git clone --depth=1 --recursive git@github.com:vortexgpgpu/vortex.git -b vortex_vm
cd vortex
```
### Configure your build folder
@ -69,21 +69,18 @@ More detailed build instructions can be found [here](docs/install_vortex.md).
export OUT_DIR=`pwd`/out
cd build
../configure --xlen=32 --tooldir=/software/vortex-toolchain-2024-05-22 --prefix=$OUT_DIR
### Ignore the commit for ramulator when it is compiled
# Please add ignore = dirty entry on .gitmodules
[submodule "third_party/ramulator"]
path = third_party/ramulator
url = https://github.com/CMU-SAFARI/ramulator.git
ignore = dirty
### Install prebuilt toolchain
# We will use the precomipled tools in volvo toolchanin directory
### set environment variables
# should always run before using the toolchain!
source ./ci/toolchain_env.sh
### Building Vortex
make -s
### Quick demo running vecadd OpenCL kernel on 2 cores
<<<<<<< HEAD
$ ./ci/blackbox.sh --cores=2 --app=vecadd
### Common Developer Tips