Home
last modified time | relevance | path

Searched refs:ratio (Results 1 – 25 of 26) sorted by relevance

12

/dpdk/examples/vm_power_manager/
H A Doob_monitor_x86.c40 float ratio; in apply_policy() local
100 ratio = 0.0; in apply_policy()
102 ratio = (float)miss_diff * (float)100 / (float)hits_diff; in apply_policy()
112 if (ratio > ci->cd[core].branch_ratio_threshold) in apply_policy()
138 return ratio; in apply_policy()
265 float ratio; in run_branch_monitor() local
281 ratio = apply_policy(j); in run_branch_monitor()
284 ratio, g_branches, in run_branch_monitor()
/dpdk/doc/guides/compressdevs/
H A Disal.rst60 i.e. ZLIB L1 gives a compression ratio similar to ISA-L L1.
81 …| | (Higher compression ratio) | …
84 …| | (Best compression ratio) | (Level 2 if …
87 …| 4 | Dynamic (Best compression ratio) | Same as above …
89 …| 5 | Dynamic (Best compression ratio) | Same as above …
91 …| 6 | Dynamic (Best compression ratio) | Same as above …
93 …| 7 | Dynamic (Best compression ratio) | Same as above …
95 …| 8 | Dynamic (Best compression ratio) | Same as above …
97 …| 9 | Dynamic (Best compression ratio) | Same as above …
/dpdk/app/test/
H A Dtest_compressdev.c151 enum ratio_switch ratio; member
993 enum ratio_switch ratio = test_data->ratio; in test_mbufs_calculate_data_size() local
2212 .ratio = RATIO_ENABLED in test_compressdev_deflate_stateless_fixed()
2284 .ratio = RATIO_ENABLED in test_compressdev_deflate_stateless_dynamic()
2340 .ratio = RATIO_ENABLED in test_compressdev_deflate_stateless_multi_op()
2395 .ratio = RATIO_ENABLED in test_compressdev_deflate_stateless_multi_level()
2486 .ratio = RATIO_ENABLED in test_compressdev_deflate_stateless_multi_xform()
2536 .ratio = RATIO_ENABLED in test_compressdev_deflate_stateless_sgl()
2648 .ratio = RATIO_ENABLED in test_compressdev_deflate_stateless_checksum()
2767 .ratio = RATIO_ENABLED in test_compressdev_out_of_space_buffer()
[all …]
/dpdk/app/test-compress-perf/
H A Dcomp_perf_test_verify.h20 double ratio; member
H A Dcomp_perf_test_verify.c396 test_data->ratio = 0; in cperf_verify_test_runner()
427 ctx->ratio = (double) ctx->comp_data_sz / in cperf_verify_test_runner()
439 test_data->level, ctx->comp_data_sz, ctx->ratio); in cperf_verify_test_runner()
H A Dcomp_perf_options.h69 double ratio; member
H A Dcomp_perf_test_throughput.c406 test_data->level, ctx->ver.comp_data_sz, ctx->ver.ratio, in cperf_throughput_test_runner()
H A Dcomp_perf_test_cyclecount.c592 ctx->ver.ratio); in cperf_cyclecount_test_runner()
/dpdk/app/test-fib/
H A Dmain.c224 uint8_t depth, ratio, ratio_acc = 0; in parse_distrib() local
234 GET_CB_FIELD(in, ratio, 0, UINT8_MAX, '\0'); in parse_distrib()
241 if (ratio > 100) { in parse_distrib()
246 if ((depth < 64) && ((n * ratio) / 100) > in parse_distrib()
250 "is %lu\n", ratio, depth, in parse_distrib()
251 ((n * ratio) / 100), (1UL << depth)); in parse_distrib()
254 rpd[depth] = ratio; in parse_distrib()
256 if (ratio == 0) in parse_distrib()
259 ratio_acc += ratio; in parse_distrib()
/dpdk/doc/guides/sample_app_ug/
H A Dvm_power_management.rst47 branch miss/hit ratio. See :ref:`enabling_out_of_band`.
129 doing this is to monitor the ratio of the branch miss to branch hits
131 on the premise that when a core is not processing packets, the ratio of
410 ``--core-branch-ratio {list of cores}:{branch ratio for listed cores}``
411 Specify the list of cores to monitor the ratio of branch misses
413 branch ratio, therefore the core frequency scales down to the
415 causing the branch ratio to increase. When the ratio goes above
416 the ratio threshold, the core frequency scales up to the maximum
417 allowed value. The specified branch-ratio is a floating point number
423 The branch ratio mechanism can also be useful for non-PMD cores and
[all …]
/dpdk/doc/guides/rel_notes/
H A Drelease_20_11.rst76 incoming traffic and send a duplicated traffic with the specified ratio to
80 The packets sampling is '1/ratio'. A ratio value set to 1 means that the
H A Drelease_19_02.rst139 compression ratio and compression throughput.
H A Drelease_18_05.rst506 ratio) absolute value.
/dpdk/doc/guides/bbdevs/
H A Dfpga_5gnr_fec.rst182 cbps (code block per second) ratio between UL and DL is 12:1, then the
H A Dfpga_lte_fec.rst181 cbps (code block per second) ratio between UL and DL is 12:1, then the
/dpdk/doc/guides/prog_guide/
H A Dgeneric_segmentation_offload_lib.rst18 packets within the guest, and improves the data-to-overhead ratio of both the
H A Drte_flow.rst3002 The matching packets will be duplicated with the specified ``ratio`` and
3004 equals is '1/ratio'. All the packets continue to the target destination.
3006 When the ``ratio`` is set to 1 then the packets will be 100% mirrored.
3017 | ``ratio`` | 32 bits sample ratio value |
/dpdk/lib/ethdev/
H A Drte_flow.h3822 uint32_t ratio; /**< packets sampled equals to '1/ratio'. */ member
/dpdk/doc/guides/tools/
H A Dtestbbdev.rst139 - Computed BLER (Block Error Rate, ratio of blocks not decoded at a given
/dpdk/drivers/net/mlx5/
H A Dmlx5_flow.h647 uint32_t ratio; /** Sample Ratio */ member
H A Dmlx5_flow_dv.c5601 if (sample->ratio == 0) in flow_dv_validate_action_sample()
5606 (sample->ratio > 0 && !priv->sampler_en)) in flow_dv_validate_action_sample()
5750 if (sample->ratio > 1) in flow_dv_validate_action_sample()
11377 if (ctx_resource->ratio == resource->ratio && in flow_dv_sample_match_cb()
11454 sampler_attr.sample_ratio = resource->ratio; in flow_dv_sample_create_cb()
11818 res->ratio = action->ratio; in flow_dv_translate_action_sample()
H A Dmlx5_flow.c5791 uint32_t ratio = 0; in flow_check_match_action() local
5810 ratio = sample->ratio; in flow_check_match_action()
5813 if (ratio == 1 && attr->transfer) in flow_check_match_action()
/dpdk/doc/guides/testpmd_app_ug/
H A Dtestpmd_funcs.rst2036 sample ratio 2 index 2 / end
5359 sample ratio 2 index 0 / queue index 1 / end
5369 sample ratio 1 index 0 / raw_encap / port_id id 0 / end
5379 sample ratio 1 index 0 / port_id id 2 / end
5391 sample ratio 1 index 0 / port_id id 2 / end
5403 sample ratio 1 index 0 / port_id id 2 / end
/dpdk/drivers/net/bnxt/tf_ulp/
H A Dulp_rte_parser.c2653 if (sample->ratio != 1) in ulp_rte_sample_act_handler()
/dpdk/app/test-pmd/
H A Dcmdline_flow.c6191 offsetof(struct rte_flow_action_sample, ratio),
6193 ratio))),

12