Remove THIS tag and use unix endlines
[csit.git] / docs / report / vpp_performance_tests / test_environment.rst
1 .. include:: test_environment_intro.rst
2
3 .. include:: test_environment_sut_conf_1.rst
4
5 .. include:: test_environment_sut_conf_2.rst
6
7 .. include:: test_environment_sut_conf_3.rst
8
9
10 DUT Configuration - VPP
11 -----------------------
12
13 **VPP Version**
14
15 |vpp-release|
16
17 **VPP Compile Parameters**
18
19 `FD.io VPP compile job`_
20
21 **VPP Install Parameters**
22
23 ::
24
25     $ dpkg -i --force-all vpp*
26
27 **VPP Startup Configuration**
28
29 VPP startup configuration changes per test case with different settings for CPU
30 cores, rx-queues and no-multi-seg parameter. Startup config is aligned with
31 applied test case tag:
32
33 Tagged by **1T1C**
34
35 ::
36
37     ip
38     {
39       heap-size 4G
40     }
41     unix
42     {
43       cli-listen localhost:5002
44       log /tmp/vpe.log
45       nodaemon
46     }
47     ip6
48     {
49       heap-size 4G
50       hash-buckets 2000000
51     }
52     heapsize 4G
53     plugins
54     {
55       plugin default
56       {
57         disable
58       }
59       plugin dpdk_plugin.so
60       {
61         enable
62       }
63     }
64     cpu
65     {
66       corelist-workers 2
67       main-core 1
68     }
69     dpdk
70     {
71       dev 0000:0a:00.0
72       dev 0000:0a:00.1
73       no-multi-seg
74       uio-driver uio_pci_generic
75       log-level debug
76       dev default
77       {
78         num-rx-queues 1
79       }
80       socket-mem 1024,1024
81       no-tx-checksum-offload
82     }
83
84 Tagged by **2T2C**
85
86 ::
87
88     ip
89     {
90       heap-size 4G
91     }
92     unix
93     {
94       cli-listen localhost:5002
95       log /tmp/vpe.log
96       nodaemon
97     }
98     ip6
99     {
100       heap-size 4G
101       hash-buckets 2000000
102     }
103     heapsize 4G
104     plugins
105     {
106       plugin default
107       {
108         disable
109       }
110       plugin dpdk_plugin.so
111       {
112         enable
113       }
114     }
115     cpu
116     {
117       corelist-workers 2,3
118       main-core 1
119     }
120     dpdk
121     {
122       dev 0000:0a:00.0
123       dev 0000:0a:00.1
124       no-multi-seg
125       uio-driver uio_pci_generic
126       log-level debug
127       dev default
128       {
129         num-rx-queues 1
130       }
131       socket-mem 1024,1024
132       no-tx-checksum-offload
133     }
134
135 Tagged by **4T4C**
136
137 ::
138
139     ip
140     {
141       heap-size 4G
142     }
143     unix
144     {
145       cli-listen localhost:5002
146       log /tmp/vpe.log
147       nodaemon
148     }
149     ip6
150     {
151       heap-size 4G
152       hash-buckets 2000000
153     }
154     heapsize 4G
155     plugins
156     {
157       plugin default
158       {
159         disable
160       }
161       plugin dpdk_plugin.so
162       {
163         enable
164       }
165     }
166     cpu
167     {
168       corelist-workers 2,3,4,5
169       main-core 1
170     }
171     dpdk
172     {
173       dev 0000:0a:00.0
174       dev 0000:0a:00.1
175       no-multi-seg
176       uio-driver uio_pci_generic
177       log-level debug
178       dev default
179       {
180         num-rx-queues 1
181       }
182       socket-mem 1024,1024
183       no-tx-checksum-offload
184     }
185
186 .. include:: test_environment_tg.rst