diff --git a/conda/README.md b/conda/README.md index 8d9c5f9a..fc60c766 100644 --- a/conda/README.md +++ b/conda/README.md @@ -13,6 +13,10 @@ If `conda` is not already set up or the preference is to have a local ## Create a New Environment or Update Existing Conda Environment +** If these steps do no work, follow the directions on + [Map/Sparta](https://github.com/sparcians/map/tree/master#building-map) + instead ** + A new environment can be created using `environment.yaml` file as follows: ``` diff --git a/test/sim/CMakeLists.txt b/test/sim/CMakeLists.txt index d17dd2d3..b6db2517 100644 --- a/test/sim/CMakeLists.txt +++ b/test/sim/CMakeLists.txt @@ -48,12 +48,21 @@ sparta_named_test(olympia_coremark_test_report_html olympia -i 1M --report reports/core_report.def --workload traces/core_riscv.zstf) +# Test missing opcodes sparta_named_test(olympia_json_test_missing_opcodes olympia --workload json_tests/missing_opcodes.json) +# Test FP transfers sparta_named_test(olympia_json_test_fp_transfers olympia --workload json_tests/fp_transfers.json) +# Test PEvent generation +sparta_named_test(olympia_json_test_pevents olympia + --workload traces/dhry_riscv.zstf + --pevents test_pevent.out RETIRE + --pevents test_pevent.out DECODE + --pevents test_pevent.out ALL) + ## Test the arches file(GLOB TEST_YAML "${SIM_BASE}/arches/*.yaml") foreach(ARCH_FULL_PATH ${TEST_YAML})