This repository was archived by the owner on Mar 3, 2025. It is now read-only.
Commit a01b7b7
authored
Dev 0.6 (#4)
* Fix config argument bug
* Fix packaging error that was only allowing lapidary to be run from the
directory itself. Now can be installed via pip.
* Cleaning up the checkpointing engine as I start working on keyframes.
- Adding some documentation (docstrings)
- Converting random print statements into log messages using the logger
modules.
- Also moved the LICENSE to the proper place in the directory hierarchy
so that it shows up on github.
* Fix bug in Spec17 plugin that wasn't allowing for customizable spec
locations.
- Spec2017Bench now overrides the SPEC17_ROOT variable in the makefile,
allowing spec to now build properly.
- Added a bit more documentation.
* Fixed the bug with early-termination in GDB
- It wasn't actually an issue with the signal handler like I thought. It
was actually that I wasn't catching a GDB error from parsing the "show
language" command. It is now fixed.
- Some other minor tweaks.
* Legacy bug cleanup.
Before we can merge 0.6, we need to do the following things:
- Get single simulate and parallel simulate working again (currently I
need to test after rebuilding gem5).
- Get keyframes fully implemented, which will dramatically increase
usability.
* Fixed single simulate
- Parallel still terminates early for some reason
* Parallel simulate is working again!
- Need to clean up the stdout/stderr interweaving.
- Should also clean up some of the logging infra
* Fixed stdout/stderr redirection
Tips and tricks:
- stdout/stderr should be in text mode (at least for python2.7, I think)
- need to seek to 0 to print
- can't use io.StringIO because python expects fileno() to be
implemented on stdout/stderr
* A bit of clean-up
* Add some keyframes scaffolding.1 parent 81b4167 commit a01b7b7
File tree
23 files changed
+338
-207
lines changed- lapidary
- checkpoint
- config
- specbench
- simulate
- tools
- utils
23 files changed
+338
-207
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
142 | 142 | | |
143 | 143 | | |
144 | 144 | | |
145 | | - | |
| 145 | + | |
146 | 146 | | |
147 | 147 | | |
148 | 148 | | |
| 149 | + | |
| 150 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | 3 | | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
| 1 | + | |
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
10 | | - | |
| 10 | + | |
11 | 11 | | |
File renamed without changes.
Submodule gem5_master added at c288af7
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
15 | | - | |
| 15 | + | |
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
19 | | - | |
| 19 | + | |
20 | 20 | | |
21 | 21 | | |
| 22 | + | |
22 | 23 | | |
23 | 24 | | |
| 25 | + | |
| 26 | + | |
24 | 27 | | |
25 | 28 | | |
26 | 29 | | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
27 | 36 | | |
28 | 37 | | |
29 | 38 | | |
30 | 39 | | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
31 | 49 | | |
32 | 50 | | |
33 | 51 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
60 | 60 | | |
61 | 61 | | |
62 | 62 | | |
63 | | - | |
64 | 63 | | |
65 | 64 | | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
0 commit comments