Both sides previous revisionPrevious revisionNext revision | Previous revision |
tools:actsim [2025/02/28 13:26] – [CHP configuration options] rajit | tools:actsim [2025/03/25 10:29] (current) – [General options] rajit |
---|
An ACT configuration file can be read into ''actsim'' to control its behavior. The following summarizes configuration options that affect the behavior of the simulator (beyond the default ACT configurations that affect all tools). The simulator loads in the default ''actsim.conf'' file, but any of those parameters can be augmented/over-ridden using the ''-cnf'' [[stdoptions:start|command-line option]]. | An ACT configuration file can be read into ''actsim'' to control its behavior. The following summarizes configuration options that affect the behavior of the simulator (beyond the default ACT configurations that affect all tools). The simulator loads in the default ''actsim.conf'' file, but any of those parameters can be augmented/over-ridden using the ''-cnf'' [[stdoptions:start|command-line option]]. |
| |
| ==== General options ==== |
| |
| When ''actsim'' starts, any top-level initialization is executed. This includes the initialize body at the top level, as well as any reset protocols for channels that cross between CHP and non-CHP components. To avoid infinite loops during this initialization phase, 100 rounds of simulation are executed by default. In some cases this amount of time may not be enough to finish the reset phase. The parameter ''reset_rounds'' can be adjusted to increase this period |
| <code> |
| begin sim |
| int reset_rounds 100 |
| end |
| </code> |
| |
| ''actsim'' also supports [[https://en.wikipedia.org/wiki/Standard_Delay_Format|SDF]] (Standard Delay Format) back-annotation for delays. This is usually enabled using the command-line option ''-S'', but can also be specified using the configuration file: |
| <code> |
| begin sim |
| string sdf_file "annotate.sdf" |
| int sdf_mangled_names 1 |
| end |
| </code> |
| The parameter ''sdf_manged_names'' is set to 1 if the instance names in the file correspond to ACT [[config:start#output_generation_and_name_mangling|mangled names]], and 0 if they correspond to standard ACT names. |
==== CHP configuration options ==== | ==== CHP configuration options ==== |
| |
end | end |
</code> | </code> |
This configuration file provides annotations for energy and delay for a ''mytype<>'' process. The ''varname'' is the name of the variable, and could be a channel or a variable that is assigned. ''D'' is the delay associated with a send/receive using that channel, or assignment to the variable (if it is an int/bool). ''E'' is the energy associated with the operation. Finally, there is a leakage power and area value for the process. | This configuration file provides annotations for energy and delay for a ''mytype<>'' process. The ''varname'' is the name of the variable, and could be a channel or a variable that is assigned. ''D'' is the delay associated with a send/receive using that channel, or assignment to the variable (if it is an int/bool). ''E'' is the energy associated with the operation. Finally, there is a leakage power and area value for the process. These values override the defaults in a type-specific manner. |
==== Mixed-signal simulation ==== | ==== Mixed-signal simulation ==== |
| |
</code> | </code> |
This is the time at which the trace file output should stop. | This is the time at which the trace file output should stop. |
| |
| <code> |
| string_table measure_statements ".measure ..." ".print i(X)..." |
| </code> |
| defines additional spice lines added to each generated spice file used for the device_level simulations, you can use it for eg. recording currents measuring avergage power and so on |
| |
==== Standard sim namespace helper functions ==== | ==== Standard sim namespace helper functions ==== |