CSIT-1226: Fix bugs in pdf version
[csit.git] / docs / report / vpp_performance_tests / test_environment.rst
1
2 .. raw:: latex
3
4     \clearpage
5
6 .. include:: ../introduction/test_environment_intro.rst
7
8 .. include:: ../introduction/test_environment_sut_conf_1.rst
9
10 .. include:: ../introduction/test_environment_sut_conf_2.rst
11
12 .. include:: ../introduction/test_environment_sut_conf_3.rst
13
14
15 DUT Configuration - VPP
16 -----------------------
17
18 **VPP Version**
19
20 |vpp-release|
21
22 **VPP Compile Parameters**
23
24 `FD.io VPP compile job`_
25
26 **VPP Install Parameters**
27
28 ::
29
30     $ dpkg -i --force-all vpp*
31
32 **VPP Startup Configuration**
33
34 VPP startup configuration changes per test case with different settings for
35 `$$CORELIST_WORKERS`, `$$NUM_RX_QUEUES`, `$$UIO_DRIVER`, `$$NUM-MBUFS` and
36 `$$NO_MULTI_SEG` parameter. Default template:
37
38 ::
39
40     ip
41     {
42       heap-size 4G
43     }
44     statseg
45     {
46       size 4G
47     }
48     unix
49     {
50       cli-listen /run/vpp/cli.sock
51       log /tmp/vpe.log
52       nodaemon
53     }
54     ip6
55     {
56       heap-size 4G
57       hash-buckets 2000000
58     }
59     heapsize 4G
60     plugins
61     {
62       plugin default
63       {
64         disable
65       }
66       plugin dpdk_plugin.so
67       {
68         enable
69       }
70     }
71     cpu
72     {
73       corelist-workers $$CORELIST_WORKERS
74       main-core 1
75     }
76     dpdk
77     {
78       num-mbufs $$NUM-MBUFS
79       uio-driver $$UIO_DRIVER
80       $$NO_MULTI_SEG
81       log-level debug
82       dev default
83       {
84         num-rx-queues $$NUM_RX_QUEUES
85       }
86       socket-mem 1024,1024
87       no-tx-checksum-offload
88       dev $$DEV_1
89       dev $$DEV_2
90     }
91
92 .. include:: ../introduction/test_environment_tg.rst