From 73f75ef93903e24c80f807299b4d22a0adb4ddbc Mon Sep 17 00:00:00 2001 From: ANDREW NICHOLS CRAWFORD TAYLOR Date: Wed, 31 Mar 2021 16:45:59 -0600 Subject: [PATCH] Updated instructions to run tool. --- Demo/README.md | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Demo/README.md b/Demo/README.md index d5ccec9db..9611b6151 100644 --- a/Demo/README.md +++ b/Demo/README.md @@ -5,7 +5,7 @@ For this demo we show the capabilities of the LSOracle tool on a benchmark from the OpenPiton Design Benchmark (OPDB) suite. Optimization of this file requires only 3 commands: read_aig, partitioning, and optimization. ```{r, engine='bash', count_lines} -./lstools #run the tool +build/core/lsoracle #run the tool read_aig chip_bridge.aig #read in the OpenPiton benchmark as an AIG network partitioning 415 #perform k-way hypergraph partitioning, any number of partitions can be used but 415 were used in the demo since this partition number creates partitions with about 300 nodes in all partitions optimization -b -o chip_bridge_out.v #perform mixed synthesis optimization and write out the optimized Verilog file diff --git a/README.md b/README.md index de1a7ade3..aa92f8c6f 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ LSOracle is available as a docker image on [Dockerhub](https://hub.docker.com/u/ [![a video tutorial for LSOracle](http://img.youtube.com/vi/W8SO2rTiLUY/0.jpg)](http://www.youtube.com/watch?v=W8SO2rTiLUY "LSOracle Tutorial") ```{r, engine='bash', count_lines} -./lstools # run the tool +build/core/lsoracle # run the tool read my_file.blif # read a file in either blif or AIG format (determined by file extension) oracle # partitions network and optimizes each partition with either AIG or MIG optimization recipes write_verilog my_output.v # outputs the optimized network in Verilog format