CSIT-1230: Improve layout of pdf report
[csit.git] / docs / report / dpdk_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_3.rst
11
12
13 DUT Configuration - DPDK
14 ------------------------
15
16 **DPDK Version**
17
18 |dpdk-release|
19
20 **DPDK Compile Parameters**
21
22 .. code-block:: bash
23
24     make install T=x86_64-native-linuxapp-gcc -j
25
26 **Testpmd Startup Configuration**
27
28 Testpmd startup configuration changes per test case with different settings for
29 `$$CORES`, `$$RXQ` and max-pkt-len parameter if test is sending jumbo frames.
30 Startup command template:
31
32 .. code-block:: bash
33
34     testpmd -c $$CORE_MASK -n 4 -- --numa --nb-ports=2 --portmask=0x3 --nb-cores=$$CORES --max-pkt-len=9000 --txqflags=0 --forward-mode=io --rxq=$$RXQ --txq=$$TXQ --burst=64 --rxd=1024 --txd=1024 --disable-link-check --auto-start
35
36 **L3FWD Startup Configuration**
37
38 L3FWD startup configuration changes per test case with different settings for
39 `$$CORES` and enable-jumbo parameter if test is sending jumbo frames.
40 Startup command template:
41
42 .. code-block:: bash
43
44     l3fwd -l $$CORE_LIST -n 4 -- -P -L -p 0x3 --config='${port_config}' --enable-jumbo --max-pkt-len=9000 --eth-dest=0,${adj_mac0} --eth-dest=1,${adj_mac1} --parse-ptype
45
46
47 .. include:: ../introduction/test_environment_tg.rst