Gemmini Integration (#356)
* gemmini submodule * fix build.sbt * firechip gemmini config * bump gemmini * bump gemmini * bump gemmini * fix hwacha typo * start gemmini docs * bump gemmini * gemmini docs * Update Gemmini RST. Add quick-build instructions to Gemmini RST * start gemmini CI * bump gemmini * gemmini CI fixes * bump gemmini * fix simulator name in gemmini CI * cleanup gemmini CI * bump esp-isa-sim to include gemmini * update gemmini docs * [ci skip] fix gemmini docs typos * Update Gemmini.rst Add instructions on building Gemmini programs, or writing your own programs. * Changed order of VCS and Verilator in Gemmini docs * Remove "make your own tests" from Gemmini README * bump gemmini * try to fix midasexamples CI
This commit is contained in:
@@ -288,6 +288,35 @@ jobs:
|
||||
key: hwacha-{{ .Branch }}-{{ .Revision }}
|
||||
paths:
|
||||
- "/home/riscvuser/project"
|
||||
prepare-gemmini:
|
||||
docker:
|
||||
- image: riscvboom/riscvboom-images:0.0.12
|
||||
environment:
|
||||
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
|
||||
TERM: dumb
|
||||
steps:
|
||||
- add_ssh_keys:
|
||||
fingerprints:
|
||||
- "3e:c3:02:5b:ed:64:8c:b7:b0:04:43:bc:83:43:73:1e"
|
||||
- checkout
|
||||
- run:
|
||||
name: Create hash of toolchains
|
||||
command: |
|
||||
.circleci/create-hash.sh
|
||||
- restore_cache:
|
||||
keys:
|
||||
- esp-tools-installed-v2-{{ checksum "../esp-tools.hash" }}
|
||||
- restore_cache:
|
||||
keys:
|
||||
- verilator-installed-v3-{{ checksum "sims/verilator/verilator.mk" }}
|
||||
- run:
|
||||
name: Building the gemmini subproject using Verilator
|
||||
command: .circleci/do-rtl-build.sh gemmini
|
||||
no_output_timeout: 120m
|
||||
- save_cache:
|
||||
key: gemmini-{{ .Branch }}-{{ .Revision }}
|
||||
paths:
|
||||
- "/home/riscvuser/project"
|
||||
prepare-tracegen:
|
||||
docker:
|
||||
- image: riscvboom/riscvboom-images:0.0.12
|
||||
@@ -516,6 +545,30 @@ jobs:
|
||||
- run:
|
||||
name: Run hwacha tests
|
||||
command: .circleci/run-tests.sh hwacha
|
||||
gemmini-run-tests:
|
||||
docker:
|
||||
- image: riscvboom/riscvboom-images:0.0.12
|
||||
environment:
|
||||
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
|
||||
TERM: dumb
|
||||
steps:
|
||||
- checkout
|
||||
- run:
|
||||
name: Create hash of toolchains
|
||||
command: |
|
||||
.circleci/create-hash.sh
|
||||
- restore_cache:
|
||||
keys:
|
||||
- esp-tools-installed-v2-{{ checksum "../esp-tools.hash" }}
|
||||
- restore_cache:
|
||||
keys:
|
||||
- gemmini-{{ .Branch }}-{{ .Revision }}
|
||||
- restore_cache:
|
||||
keys:
|
||||
- verilator-installed-v3-{{ checksum "sims/verilator/verilator.mk" }}
|
||||
- run:
|
||||
name: Run gemmini tests
|
||||
command: .circleci/run-tests.sh gemmini
|
||||
tracegen-run-tests:
|
||||
docker:
|
||||
- image: riscvboom/riscvboom-images:0.0.12
|
||||
@@ -660,6 +713,11 @@ workflows:
|
||||
- install-esp-toolchain
|
||||
- install-verilator
|
||||
|
||||
- prepare-gemmini:
|
||||
requires:
|
||||
- install-esp-toolchain
|
||||
- install-verilator
|
||||
|
||||
- prepare-tracegen:
|
||||
requires:
|
||||
- install-riscv-toolchain
|
||||
@@ -704,6 +762,10 @@ workflows:
|
||||
requires:
|
||||
- prepare-hwacha
|
||||
|
||||
- gemmini-run-tests:
|
||||
requires:
|
||||
- prepare-gemmini
|
||||
|
||||
- tracegen-run-tests:
|
||||
requires:
|
||||
- prepare-tracegen
|
||||
|
||||
Reference in New Issue
Block a user