-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproduct_test.xml
More file actions
144 lines (126 loc) · 4.54 KB
/
product_test.xml
File metadata and controls
144 lines (126 loc) · 4.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<?xml version='1.0' encoding='UTF-8' standalone='no'?>
<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="1.8.6">
<!-- Sequence Generator -->
<pcb id="source" name="SeqGen">
<pads>
<out_barrier type="int *" name="bo1" value="bo1" />
</pads>
<steps>
<step id="step_xtil_sequence_generator">
<param type="int *" name="bo1" value="bo1" />
<param type="uint8_t" name="count" value="5" />
</step>
</steps>
</pcb>
<!-- +1 Adder Filter -->
<pcb id="adder" name="SeqAdd1S">
<pads>
<in_barrier type="int *" name="bi1" value="bi1"/>
<out_barrier type="int *" name="bo1" value="bo1" />
</pads>
<steps>
<step id="step_xtil_sequence_adder">
<param type="int *" name="bi1" value="bi1" />
<param type="int *" name="bo1" value="bo1" />
<param type="uint8_t" name="value" value="1" />
</step>
</steps>
</pcb>
<!-- +2 Adder Filter -->
<pcb id="adder" name="SeqAdd2S">
<pads>
<in_barrier type="int *" name="bi1" value="bi1"/>
<out_barrier type="int *" name="bo1" value="bo1" />
</pads>
<buffers>
<buffer type="int *" name="ib1" value="ib1" />
</buffers>
<steps>
<step id="step_xtil_sequence_adder">
<param type="int *" name="bi1" value="bi1" />
<param type="int *" name="ib1" value="ib1" />
<param type="uint8_t" name="value" value="1" />
</step>
<step id="step_xtil_sequence_adder">
<param type="int *" name="ib1" value="ib1" />
<param type="int *" name="bo1" value="bo1" />
<param type="uint8_t" name="value" value="1" />
</step>
</steps>
</pcb>
<!-- Sequence Consumer -->
<pcb id="sink" name="SeqSnk">
<pads>
<in_barrier type="int *" name="bi1" value="bi1" />
</pads>
<steps>
<step id="step_xtil_sequence_consumer">
<param type="int *" name="bi1" value="bi1" />
</step>
</steps>
</pcb>
<!-- Sequence Comparator -->
<pcb id="sink" name="SeqCmp">
<pads>
<in_barrier type="int *" name="bi1" value="bi1" />
<in_barrier type="int *" name="bi2" value="bi2" />
</pads>
<steps>
<step id="step_xtil_sequence_compator">
<param type="int *" name="bi1" value="bi1" />
<param type="int *" name="bi2" value="bi2" />
</step>
</steps>
</pcb>
<!-- Program "SimpleNetworkExample" -->
<program id="1" name="SimpleNetworkExample">
<!-- Synchronization buffers -->
<link id="1" name="Src2Add" type="IntBarrier" ccount="1" />
<link id="2" name="Add2Snk" type="IntBarrier" ccount="1" />
<!-- Program Control Blocks and Pads connections -->
<pcb id="1" name="Src" type="SeqGen" >
<output name="Src2Add" />
</pcb>
<pcb id="2" name="Add" type="SeqAdd1S" >
<input name="Src2Add" />
<output name="Add2Snk" />
</pcb>
<pcb id="3" name="Snk" type="SeqSnk" >
<input name="Add2Snk" />
</pcb>
</program>
<!-- Program "ComplexNetworkExample" -->
<program id="2" name="ComplexNetworkExample">
<!-- Synchronization buffers -->
<link id="1" name="SRC_2_LR1" type="IntBarrier" ccount="2" />
<link id="2" name="LA1_2_LA2" type="IntBarrier" ccount="1" />
<link id="3" name="RA1_2_RA2" type="IntBarrier" ccount="1" />
<link id="4" name="LA2_2_SNK" type="IntBarrier" ccount="1" />
<link id="5" name="RA2_2_SNK" type="IntBarrier" ccount="1" />
<!-- Program Control Blocks and Pads connections -->
<pcb id="1" name="SRC" type="SeqGen" >
<output name="SRC_2_LR1" />
</pcb>
<pcb id="2" name="LA1" type="SeqAdd1S" >
<input name="SRC_2_LR1" />
<output name="LA1_2_LA2" />
</pcb>
<pcb id="3" name="RA1" type="SeqAdd1S" >
<input name="SRC_2_LR1" />
<output name="RA1_2_RA2" />
</pcb>
<pcb id="4" name="LA2" type="SeqAdd2S" >
<input name="LA1_2_LA2" />
<output name="LA2_2_SNK" />
</pcb>
<pcb id="5" name="RA2" type="SeqAdd2S" >
<input name="RA1_2_RA2" />
<output name="RA2_2_SNK" />
</pcb>
<pcb id="6" name="SNK" type="SeqCmp" >
<input name="LA2_2_SNK" />
<input name="RA2_2_SNK" />
</pcb>
</program>
</doxygen>
<!-- vim: set tabstop=2 shiftwidth=2 expandtab filetype=xml : -->