Update report doc for rls1807
[csit.git] / docs / report / vpp_performance_tests / test_environment.rst
1 .. include:: ../introduction/test_environment_intro.rst
2
3 .. include:: ../introduction/test_environment_sut_conf_1.rst
4
5 .. include:: ../introduction/test_environment_sut_conf_2.rst
6
7 .. include:: ../introduction/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
30 `$$CORELIST_WORKERS`, `$$NUM_RX_QUEUES`, `$$UIO_DRIVER`, `$$NUM-MBUFS` and
31 `$$NO_MULTI_SEG` parameter. Default template:
32
33 ::
34
35     ip
36     {
37       heap-size 4G
38     }
39     statseg
40     {
41       size 4G
42     }
43     unix
44     {
45       cli-listen /run/vpp/cli.sock
46       log /tmp/vpe.log
47       nodaemon
48     }
49     ip6
50     {
51       heap-size 4G
52       hash-buckets 2000000
53     }
54     heapsize 4G
55     plugins
56     {
57       plugin default
58       {
59         disable
60       }
61       plugin dpdk_plugin.so
62       {
63         enable
64       }
65     }
66     cpu
67     {
68       corelist-workers $$CORELIST_WORKERS
69       main-core 1
70     }
71     dpdk
72     {
73       num-mbufs $$NUM-MBUFS
74       uio-driver $$UIO_DRIVER
75       $$NO_MULTI_SEG
76       log-level debug
77       dev default
78       {
79         num-rx-queues $$NUM_RX_QUEUES
80       }
81       socket-mem 1024,1024
82       no-tx-checksum-offload
83       dev $$DEV_1
84       dev $$DEV_2
85     }
86
87 .. include:: ../introduction/test_environment_tg.rst