1# This format supports comments using the '#' symbol as the leading
2# character of the line
3#
4# The file format contains [STATE]+ [INIT] [TRANSITION]+ in any order,
5# where the states are the nodes in the graph, init describes what
6# state to start in, and transition describes the edges of the graph.
7#
8# STATE <id> <duration (ticks)> <type>
9#
10# State IDLE idles
11#
12# States LINEAR and RANDOM have additional <percent reads> <start addr>
13# <end addr> <access size (bytes)> <min period (ticks)> <max period (ticks)>
14# <data limit (bytes)>
15#
16# State TRACE plays back a pre-recorded trace once
17#
18# Addresses are expressed as decimal numbers. The period in the linear
19# and random state is from a uniform random distribution over the
20# interval. If a specific value is desired, then the min and max can
21# be set to the same value.
22STATE 0 1000000 TRACE tgen-simple-mem.trc 100
23STATE 1 100000000 RANDOM 0 0 134217728 64 30000 30000 0
24STATE 2 1000000000 IDLE
25STATE 3 100000000 LINEAR 0 0 134217728 64 30000 30000 0
26STATE 4 1000000 IDLE
27INIT 0
28TRANSITION 0 1 1
29TRANSITION 1 2 1
30TRANSITION 2 3 0.5
31TRANSITION 2 4 0.5
32TRANSITION 3 2 1
33TRANSITION 4 4 1
34