@@ -141,94 +141,94 @@ jobs:
141141 testOnly radiance.muon.SequencerTest; \
142142 testOnly radiance.muon.ScoreboardTest"
143143
144- run-soc-isa -tests :
145- name : Run SoC ISA tests
144+ run-soc-binary -tests :
145+ name : Run SoC binary tests
146146 runs-on : as4
147147 needs : build
148148 steps :
149- - name : Run ISA tests on SoC config
149+ - name : Run binary tests on SoC config
150150 run : |
151151 cd "${CHIPYARD_DIR}"
152152 source env.sh
153153 source /ecad/tools/vlsi.bashrc
154154 cd generators/radiance
155- python3 test/run_isa_tests .py -j "$(nproc)" \
156- --json-out test/isa -test-logs/soc/results.json
157- - name : Render ISA test report
155+ python3 test/run_binary .py -j "$(nproc)" \
156+ --json-out test/binary -test-logs/soc/results.json
157+ - name : Render binary test report
158158 if : always()
159159 run : |
160160 cd "${CHIPYARD_DIR}/generators/radiance"
161- python3 test/render_isa_test_report .py \
162- test/isa -test-logs/soc/results.json \
161+ python3 test/render_binary_test_report .py \
162+ test/binary -test-logs/soc/results.json \
163163 --github-step-summary
164164
165- run-core-isa -tests :
166- name : Run Core-standalone ISA tests
165+ run-core-binary -tests :
166+ name : Run Core-standalone binary tests
167167 runs-on : as4
168168 needs : build
169169 steps :
170- - name : Run ISA tests on core-as-top config
170+ - name : Run binary tests on core-as-top config
171171 run : |
172172 cd "${CHIPYARD_DIR}"
173173 source env.sh
174174 source /ecad/tools/vlsi.bashrc
175175 cd generators/radiance
176- python3 test/run_isa_tests .py -j "$(nproc)" -c core \
177- --json-out test/isa -test-logs/core/results.json
178- - name : Render ISA test report
176+ python3 test/run_binary_tests .py -j "$(nproc)" -c core \
177+ --json-out test/binary -test-logs/core/results.json
178+ - name : Render binary test report
179179 if : always()
180180 run : |
181181 cd "${CHIPYARD_DIR}/generators/radiance"
182- python3 test/render_isa_test_report .py \
183- test/isa -test-logs/core/results.json \
182+ python3 test/render_binary_test_report .py \
183+ test/binary -test-logs/core/results.json \
184184 --github-step-summary
185185
186- run-cosim-isa -tests :
187- name : Run Cyclotron-as-a-Tile Co-sim ISA tests
186+ run-cosim-binary -tests :
187+ name : Run Cyclotron-as-a-Tile Co-sim binary tests
188188 runs-on : as4
189189 needs : build
190190 steps :
191- - name : Run ISA tests on backend co-sim config
191+ - name : Run binary tests on backend co-sim config
192192 run : |
193193 cd "${CHIPYARD_DIR}"
194194 source env.sh
195195 source /ecad/tools/vlsi.bashrc
196196 cd generators/radiance
197- python3 test/run_isa_tests .py -j "$(nproc)" -c cosim \
198- --json-out test/isa -test-logs/cosim/results.json
199- - name : Render ISA test report
197+ python3 test/run_binary_tests .py -j "$(nproc)" -c cosim \
198+ --json-out test/binary -test-logs/cosim/results.json
199+ - name : Render binary test report
200200 if : always()
201201 run : |
202202 cd "${CHIPYARD_DIR}/generators/radiance"
203- python3 test/render_isa_test_report .py \
204- test/isa -test-logs/cosim/results.json \
203+ python3 test/render_binary_test_report .py \
204+ test/binary -test-logs/cosim/results.json \
205205 --github-step-summary
206206
207- # run-backend-cosim-isa -tests:
208- # name: Run Backend Co-sim ISA tests
207+ # run-backend-cosim-binary -tests:
208+ # name: Run Backend Co-sim binary tests
209209 # runs-on: as4
210210 # needs: build
211211 # steps:
212- # - name: Run ISA tests on backend co-sim config
212+ # - name: Run binary tests on backend co-sim config
213213 # run: |
214214 # cd "${CHIPYARD_DIR}"
215215 # source env.sh
216216 # source /ecad/tools/vlsi.bashrc
217217 # cd generators/radiance
218- # python3 test/run_isa_tests .py -j "$(nproc)" -c backend \
219- # --json-out test/isa -test-logs/backend/results.json
220- # - name: Render ISA test report
218+ # python3 test/run_binary_tests .py -j "$(nproc)" -c backend \
219+ # --json-out test/binary -test-logs/backend/results.json
220+ # - name: Render binary test report
221221 # if: always()
222222 # run: |
223223 # cd "${CHIPYARD_DIR}/generators/radiance"
224- # python3 test/render_isa_test_report .py \
225- # test/isa -test-logs/backend/results.json \
224+ # python3 test/render_binary_test_report .py \
225+ # test/binary -test-logs/backend/results.json \
226226 # --github-step-summary
227227
228228 clean :
229229 name : Clean
230230 runs-on : as4
231- needs : [build, run-unit-tests, run-soc-isa -tests, run-core-isa -tests, run-cosim-isa -tests]
231+ needs : [build, run-unit-tests, run-soc-binary -tests, run-core-binary -tests, run-cosim-binary -tests]
232232 if : always()
233233 steps :
234234 - name : Cleanup workspace, chipyard and conda
0 commit comments