Report: Infra update
[csit.git] / docs / report / dpdk_performance_tests / test_environment.rst
1
2 .. raw:: latex
3
4     \clearpage
5
6 .. _dpdk_test_environment:
7
8 .. include:: ../introduction/test_environment_intro.rst
9
10 .. include:: ../introduction/test_environment_sut_calib_skx.rst
11
12 .. include:: ../introduction/test_environment_sut_calib_clx.rst
13
14 .. include:: ../introduction/test_environment_sut_calib_hsw.rst
15
16 .. include:: ../introduction/test_environment_sut_calib_dnv.rst
17
18 .. include:: ../introduction/test_environment_sut_calib_tsh.rst
19
20 .. include:: ../introduction/test_environment_sut_conf_1.rst
21
22
23 DUT Settings - DPDK
24 -------------------
25
26 DPDK Version
27 ~~~~~~~~~~~~
28
29 |dpdk-release|
30
31 DPDK Compile Parameters
32 ~~~~~~~~~~~~~~~~~~~~~~~
33
34 .. code-block:: bash
35
36     make install T=<arch>-<machine>-linuxapp-gcc -j
37
38 Testpmd Startup Configuration
39 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
40
41 Testpmd startup configuration changes per test case with different settings for
42 `$$INT`, `$$CORES`, `$$RXQ`, `$$RXD` and max-pkt-len parameter if test is
43 sending jumbo frames. Startup command template:
44
45 .. code-block:: bash
46
47     testpmd -v -l $$CORE_LIST -w $$INT1 -w $$INT2 --master-lcore 0 --in-memory -- --forward-mode=io --burst=64 --txd=$$TXD --rxd=$$RXD --txq=$$TXQ --rxq=$$RXQ --tx-offloads=0x0 --numa --auto-start --total-num-mbufs=16384 --nb-ports=2 --portmask=0x3 --disable-link-check --max-pkt-len=$$PKT_LEN [--mbuf-size=16384] --nb-cores=$$CORES
48
49 L3FWD Startup Configuration
50 ~~~~~~~~~~~~~~~~~~~~~~~~~~~
51
52 L3FWD startup configuration changes per test case with different settings for
53 `$$INT`, `$$CORES` and enable-jumbo parameter if test is sending jumbo frames.
54 Startup command template:
55
56 .. code-block:: bash
57
58     l3fwd -v -l $$CORE_LIST -w $$INT1 -w $$INT2 --master-lcore 0 --in-memory -- --parse-ptype --eth-dest="0,${adj_mac0}" --eth-dest="1,${adj_mac1}" --config="${port_config}" [--enable-jumbo] -P -L -p 0x3
59
60 .. include:: ../introduction/test_environment_tg.rst