Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
tools:actsim [2024/07/04 13:29] – [Using pre-defined sources and sinks with data in the ACT file] rajit | tools:actsim [2025/03/25 10:29] (current) – [General options] rajit | ||
---|---|---|---|
Line 80: | Line 80: | ||
==== Timing ==== | ==== Timing ==== | ||
- | < | + | < |
Set the random timing mode and optionally specify the default random timing bounds for all nodes. | Set the random timing mode and optionally specify the default random timing bounds for all nodes. | ||
+ | If '' | ||
< | < | ||
Line 90: | Line 91: | ||
< | < | ||
- | turn on/off random exclhi/lo firings | + | Turn on/off random exclhi/lo firings. ACT uses '' |
- | + | This is typically used to model arbiters. If the '' | |
==== Running Simulation ==== | ==== Running Simulation ==== | ||
Line 270: | Line 270: | ||
sim:: | sim:: | ||
3, // three data values | 3, // three data values | ||
- | {3, | + | {3,5,2}, // the data values |
false, // don't repeat the sequence of values | false, // don't repeat the sequence of values | ||
0, // source ID is zero for logging | 0, // source ID is zero for logging | ||
Line 294: | Line 294: | ||
{ | { | ||
adder a; | adder a; | ||
- | // The first parameter is the file ID (default name is _infile_.0). | + | // The first parameter is the bitwidth |
- | // The second | + | // The second |
- | // The third parameter is the bit-width. | + | // The third parameter is whether the file should be looped. |
- | sim::file_source<0, false, | + | // The fourth |
+ | // The fifth parameter specifies if the source should log its output | ||
+ | sim::source_file<32, 0, false, | ||
| | ||
// This could also use a file source | // This could also use a file source | ||
- | sim::source_seq<32, false, 3, {7,9,3}> s2(a.B); | + | sim::source_sequence<32, 3, {7,9,3}, false, 1, false> s2(a.B); |
- | sim:: | + | sim:: |
- | | + | 0, // sink ID for logging |
+ | true // log values | ||
> sx(a.C); | > sx(a.C); | ||
} | } | ||
Line 322: | Line 325: | ||
An ACT configuration file can be read into '' | An ACT configuration file can be read into '' | ||
+ | ==== General options ==== | ||
+ | When '' | ||
+ | < | ||
+ | begin sim | ||
+ | int reset_rounds 100 | ||
+ | end | ||
+ | </ | ||
+ | |||
+ | '' | ||
+ | < | ||
+ | begin sim | ||
+ | string sdf_file " | ||
+ | int sdf_mangled_names 1 | ||
+ | end | ||
+ | </ | ||
+ | The parameter '' | ||
==== CHP configuration options ==== | ==== CHP configuration options ==== | ||
Line 354: | Line 373: | ||
If this is set to 1, then debugging messages are printed out showing the metrics that '' | If this is set to 1, then debugging messages are printed out showing the metrics that '' | ||
+ | Metrics for energy, delay, leakage power, and area can be specified in a configuration file. These metrics are specified for each process type. (A better version is in the works...) | ||
+ | |||
+ | < | ||
+ | begin sim | ||
+ | begin chp | ||
+ | begin mytype<> | ||
+ | begin varname | ||
+ | int D 42 | ||
+ | int E 84 | ||
+ | end | ||
+ | real leakage 1e-8 | ||
+ | int area 23 | ||
+ | end | ||
+ | end | ||
+ | end | ||
+ | </ | ||
+ | This configuration file provides annotations for energy and delay for a '' | ||
==== Mixed-signal simulation ==== | ==== Mixed-signal simulation ==== | ||
Line 415: | Line 451: | ||
</ | </ | ||
This is the time at which the trace file output should stop. | This is the time at which the trace file output should stop. | ||
+ | |||
+ | < | ||
+ | string_table measure_statements " | ||
+ | </ | ||
+ | defines additional spice lines added to each generated spice file used for the device_level simulations, | ||
==== Standard sim namespace helper functions ==== | ==== Standard sim namespace helper functions ==== |