forked from pulp-platform/snitch_cluster
-
Notifications
You must be signed in to change notification settings - Fork 0
120 lines (110 loc) · 3.56 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# Copyright 2020 ETH Zurich and University of Bologna.
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
# SPDX-License-Identifier: Apache-2.0
# Run functional regression checks
name: ci
on: [push, pull_request]
jobs:
########
# Docs #
########
docs:
name: Build documentation
runs-on: ubuntu-22.04
container:
image: ghcr.io/pulp-platform/snitch_cluster:main
steps:
- uses: actions/checkout@v2
- name: Build docs
run: make docs
##############################################
# Simulate SW on Snitch Cluster w/ Verilator #
##############################################
sw-snitch-cluster-vlt:
name: Simulate SW on Snitch Cluster w/ Verilator
runs-on: ubuntu-22.04
container:
image: ghcr.io/kuleuven-micas/snax:latest
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Build Software
run: |
bender vendor init
make -C target/snitch_cluster sw
- name: Build Hardware
run: |
make -C target/snitch_cluster bin/snitch_cluster.vlt
- name: Run Tests
working-directory: target/snitch_cluster
run: |
./run.py sw/run.yaml --simulator verilator -j
############################################
# Simulate SW on Snax Cluster w/ Verilator #
############################################
sw-snax-mac-cluster-vlt:
name: Simulate SW on SNAX MAC Cluster w/ Verilator
runs-on: ubuntu-22.04
container:
image: ghcr.io/kuleuven-micas/snax:latest
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Build Hardware
run: |
make CFG_OVERRIDE=cfg/snax-mac.hjson \
-C target/snitch_cluster bin/snitch_cluster.vlt
- name: Build Software
run: |
bender vendor init
make -C target/snitch_cluster sw
- name: Run Tests
working-directory: target/snitch_cluster
run: |-
./run.py sw/tests/snax-mac-run.yaml --simulator verilator
./run.py sw/apps/snax-mac-run.yaml --simulator verilator
sw-snax-gemm-cluster-vlt:
name: Simulate SW on SNAX GEMM Cluster w/ Verilator
runs-on: ubuntu-22.04
container:
image: ghcr.io/kuleuven-micas/snax:latest
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Build Hardware
run: |
make CFG_OVERRIDE=cfg/snax-gemm.hjson \
-C target/snitch_cluster bin/snitch_cluster.vlt
- name: Build Software
run: |
make -C target/snitch_cluster sw
- name: Run Tests
working-directory: target/snitch_cluster
run: |-
./run.py sw/tests/snax-gemm-run.yaml --simulator verilator
./run.py sw/apps/snax-gemm-run.yaml --simulator verilator
############################################
# Build SW on Snitch Cluster w/ Banshee #
#########################################
sw-snitch-cluster-banshee:
name: Simulate SW on Snitch Cluster w/ Banshee
runs-on: ubuntu-22.04
container:
image: ghcr.io/pulp-platform/snitch_cluster:main
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Build Software
run: |
bender vendor init
make -C target/snitch_cluster SELECT_RUNTIME=banshee sw
- name: Run Tests
env:
SNITCH_LOG: info
working-directory: target/snitch_cluster
run: |
./run.py sw/run.yaml --simulator banshee -j