captions, README typos, rename
* Notebook names and titles were out of date * Add captions to workflow diagrms * Fix READMEs (setup flows) * Fix READMEs extracts in slides (cf. above)
This commit is contained in:
parent
37ff8d22f2
commit
a1bacf9623
10 changed files with 27 additions and 27 deletions
|
@ -29,7 +29,7 @@ A container can be prepared an run using:
|
|||
|
||||
```
|
||||
docker build --tag freechips https://forge.slowte.ch/workshops/freechips.git
|
||||
docker run --interactive --publish 1853:1853 --tty --network=host freechips
|
||||
docker run --interactive --publish 1853:1853 --tty freechips
|
||||
```
|
||||
|
||||
A `README.md` file containing instructions for using the assets is available in each directory.
|
|
@ -5,7 +5,7 @@
|
|||
Make sure Anaconda is installed and that you are in the `fullcustom` directory. The fullcustom environment can be created, updated and activated using:
|
||||
|
||||
```sh
|
||||
conda env create # Already fulfilled under the docker build
|
||||
conda env create # Not for Docker
|
||||
conda activate fullcustom
|
||||
```
|
||||
|
||||
|
@ -14,6 +14,6 @@ conda activate fullcustom
|
|||
The notebook can be openend as follows:
|
||||
|
||||
```sh
|
||||
jupyter-notebook # When using GNU/Linux, MacOS, WSL
|
||||
jupyter-notebook --ip 0.0.0.0 --port 1853 --no-browser --allow-root
|
||||
jupyter-notebook # For GNU/Linux, MacOS, WSL
|
||||
jupyter-notebook --ip 0.0.0.0 --port 1853 --no-browser --allow-root # For Docker
|
||||
```
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
"id": "9quLG8jhYqwq"
|
||||
},
|
||||
"source": [
|
||||
"# Fullcustom analog design demo using Magic\n",
|
||||
"# Fullcustom analog design crashbook\n",
|
||||
"\n",
|
||||
"The environment path must be retrieved in order to provide _Magic_ with the technology files.\n",
|
||||
"\n",
|
|
@ -5,7 +5,7 @@
|
|||
Make sure Anaconda is installed and that you are in the `semicustom` directory. The semicustom environment can be created, updated and activated using:
|
||||
|
||||
```sh
|
||||
conda env create # Already fulfilled under the docker build
|
||||
conda env create # Not for Docker
|
||||
conda activate semicustom
|
||||
```
|
||||
|
||||
|
@ -14,6 +14,6 @@ conda activate semicustom
|
|||
The notebook can be openend as follows:
|
||||
|
||||
```sh
|
||||
jupyter-notebook # When using GNU/Linux, MacOS, WSL
|
||||
jupyter-notebook --ip 0.0.0.0 --port 1853 --no-browser --allow-root
|
||||
jupyter-notebook # For GNU/Linux, MacOS, WSL
|
||||
jupyter-notebook --ip 0.0.0.0 --port 1853 --no-browser --allow-root # For Docker
|
||||
```
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
"id": "uINjDJNf39eD"
|
||||
},
|
||||
"source": [
|
||||
"# Semicustom digital design demo using OpenROAD\n",
|
||||
"# Semicustom digital design crashbook\n",
|
||||
"\n",
|
||||
"## Sources\n",
|
||||
"\n",
|
4
slides/img/fullcustom.drawio.svg
Normal file
4
slides/img/fullcustom.drawio.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 118 KiB |
File diff suppressed because one or more lines are too long
Before Width: | Height: | Size: 107 KiB |
4
slides/img/semicustom.drawio.svg
Normal file
4
slides/img/semicustom.drawio.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 137 KiB |
File diff suppressed because one or more lines are too long
Before Width: | Height: | Size: 126 KiB |
|
@ -135,14 +135,14 @@
|
|||
|
||||
<h2>Semicustom workflow</h2>
|
||||
|
||||
<img style="background-color:white;" src="img/semicustom.svg" height="500vh">
|
||||
<img style="background-color:white;" src="img/semicustom.drawio.svg" height="500vh">
|
||||
|
||||
</section>
|
||||
<section>
|
||||
|
||||
<h2>Fullcustom workflow</h2>
|
||||
|
||||
<img style="background-color:white;" src="img/fullcustom.svg" height="500vh">
|
||||
<img style="background-color:white;" src="img/fullcustom.drawio.svg" height="500vh">
|
||||
|
||||
</section>
|
||||
<section>
|
||||
|
@ -171,7 +171,7 @@
|
|||
|
||||
# 🐋
|
||||
docker build --tag freechips https://forge.slowte.ch/workshops/freechips.git#main
|
||||
docker run --interactive --publish 1853:1853 --tty --network=host freechips
|
||||
docker run --interactive --publish 1853:1853 --tty freechips
|
||||
```
|
||||
|
||||
</section>
|
||||
|
@ -181,12 +181,12 @@
|
|||
```sh
|
||||
# Prepare the conda environment
|
||||
cd semicustom
|
||||
conda env create # Already fulfilled under the docker build
|
||||
conda env create # Not for Docker
|
||||
conda activate semicustom
|
||||
|
||||
# Launch the jupyter notebook
|
||||
jupyter-notebook # When using GNU/Linux, MacOS, WSL
|
||||
jupyter-notebook --ip 0.0.0.0 --port 1853 --no-browser --allow-root
|
||||
jupyter-notebook # For GNU/Linux, MacOS, WSL
|
||||
jupyter-notebook --ip 0.0.0.0 --port 1853 --no-browser --allow-root # For Docker
|
||||
```
|
||||
|
||||
</section>
|
||||
|
@ -196,12 +196,12 @@
|
|||
```sh
|
||||
# Prepare the conda environment
|
||||
cd fullcustom
|
||||
conda env create # Already fulfilled under the docker build
|
||||
conda activate fullcustom
|
||||
conda env create # Not for Docker
|
||||
conda activate fullcustom
|
||||
|
||||
# Launch the jupyter notebook
|
||||
jupyter-notebook # When using GNU/Linux, MacOS, WSL
|
||||
jupyter-notebook --ip 0.0.0.0 --port 1853 --no-browser --allow-root
|
||||
jupyter-notebook # For GNU/Linux, MacOS, WSL
|
||||
jupyter-notebook --ip 0.0.0.0 --port 1853 --no-browser --allow-root # For Docker
|
||||
```
|
||||
|
||||
</section>
|
||||
|
|
Loading…
Reference in a new issue