-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3ed8855
commit 7c24159
Showing
5 changed files
with
42 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,10 @@ conda activate arch-gym | |
|
||
## Install acme | ||
|
||
Simply run ```install_acme.sh``` in the arch-gym emnvironment. | ||
Activate the arch-gym conda environment, then in ```oss-arch-gym/acme``` run | ||
``` | ||
pip install .[tf,testing,envs,jax] | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
manan-garg1504
Author
Collaborator
|
||
``` | ||
|
||
Now, run ```conda env list```, which will show the path to your arch-gym environment. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#/bin/sh | ||
|
||
#install cfu-playground submodule | ||
if [ $1 == 'cfu' ]; then | ||
git submodule update --init sims/CFU-Playground/CFU-Playground | ||
|
||
cd sims/CFU-Playground/CFU-Playground | ||
|
||
./scripts/setup_vexriscv_build.sh | ||
./scripts/setup | ||
make install-sf | ||
fi | ||
|
||
#install vizier in arch-gym conda environment | ||
#Assumes user is in the arch-gym conda environment | ||
|
||
if [ $1 == 'viz' ]; then | ||
|
||
git clone https://github.com/ShvetankPrakash/vizier.git | ||
cd vizier | ||
|
||
sudo apt-get install -y libprotobuf-dev | ||
|
||
pip install -r requirements.txt --use-deprecated=legacy-resolver | ||
pip install -e . | ||
|
||
./build_protos.sh | ||
|
||
pip install -r requirements-algorithms.txt | ||
pip install -r requirements-benchmarks.txt | ||
fi |
File renamed without changes.
@manan-garg1504 does this command work without error? Seems when I ran it following your steps I got: