Searched refs:bitwidth (Results 1 – 9 of 9) sorted by relevance
| /f-stack/dpdk/doc/guides/howto/ |
| H A D | avx512.rst | 9 and by the user with a commandline argument. DPDK has a setting for max SIMD bitwidth, 17 This can be done by modifying the EAL setting for max SIMD bitwidth to 512, as by default it is 256, 31 The user can select to use AVX-512 at runtime, using the following argument to set the max bitwidth… 33 ./app/dpdk-testpmd --force-max-simd-bitwidth=512 35 This will override any further changes to the max SIMD bitwidth in DPDK,
|
| /f-stack/dpdk/doc/guides/linux_gsg/ |
| H A D | eal_args.include.rst | 214 * ``--force-max-simd-bitwidth=<val>``: 216 Specify the maximum SIMD bitwidth size to handle. This limits which vector paths, 217 if any, are taken, as any paths taken must use a bitwidth below the max bitwidth limit. 220 --force-max-simd-bitwidth=512 222 The following example shows limiting the bitwidth to 64-bits to disable all vector code:: 224 --force-max-simd-bitwidth=64 226 To disable use of max SIMD bitwidth limit:: 228 --force-max-simd-bitwidth=0
|
| /f-stack/freebsd/x86/isa/ |
| H A D | atrtc.c | 316 UINT32 bitwidth, UINT64 *value, void *context, void *region_context) in atrtc_acpi_cmos_handler() argument 319 UINT32 bytewidth = howmany(bitwidth, 8); in atrtc_acpi_cmos_handler() 332 if (bitwidth == 0 || (bitwidth & 0x07) != 0) { in atrtc_acpi_cmos_handler() 333 CMOS_HANDLER_ERR("Invalid bitwidth: %u\n", bitwidth); in atrtc_acpi_cmos_handler()
|
| /f-stack/dpdk/lib/librte_eal/common/ |
| H A D | eal_common_options.c | 355 internal_cfg->max_simd_bitwidth.bitwidth = RTE_VECT_DEFAULT_SIMD_BITWIDTH; in eal_reset_internal_config() 1329 unsigned long bitwidth; in eal_parse_simd_bitwidth() local 1338 bitwidth = strtoul(arg, &end, 0); in eal_parse_simd_bitwidth() 1341 if (errno != 0 || end == NULL || *end != '\0' || bitwidth > RTE_VECT_SIMD_MAX) in eal_parse_simd_bitwidth() 1344 if (bitwidth == 0) in eal_parse_simd_bitwidth() 1345 bitwidth = (unsigned long) RTE_VECT_SIMD_MAX; in eal_parse_simd_bitwidth() 1346 ret = rte_vect_set_max_simd_bitwidth(bitwidth); in eal_parse_simd_bitwidth() 1968 return internal_conf->max_simd_bitwidth.bitwidth; in rte_vect_get_max_simd_bitwidth() 1972 rte_vect_set_max_simd_bitwidth(uint16_t bitwidth) in rte_vect_set_max_simd_bitwidth() argument 1981 if (bitwidth < RTE_VECT_SIMD_DISABLED || !rte_is_power_of_2(bitwidth)) { in rte_vect_set_max_simd_bitwidth() [all …]
|
| H A D | eal_internal_cfg.h | 39 uint16_t bitwidth; /**< bitwidth value */ member
|
| /f-stack/dpdk/lib/librte_eal/include/generic/ |
| H A D | rte_vect.h | 233 int rte_vect_set_max_simd_bitwidth(uint16_t bitwidth);
|
| /f-stack/dpdk/doc/guides/prog_guide/ |
| H A D | packet_classif_access_ctrl.rst | 371 Requires max SIMD bitwidth to be at least 64. 374 Requires max SIMD bitwidth to be at least 128. 377 Requires max SIMD bitwidth to be at least 256. 380 in parallel. Requires NEON support. Requires max SIMD bitwidth to be at least 128. 383 flows in parallel. Requires ALTIVEC support. Requires max SIMD bitwidth to be at least 128. 387 Requires AVX512 support. Requires max SIMD bitwidth to be at least 256. 391 Requires AVX512 support. Requires max SIMD bitwidth to be at least 512. 399 Runtime algorithm selection obeys EAL max SIMD bitwidth parameter.
|
| H A D | env_abstraction_layer.rst | 492 Max SIMD bitwidth 495 The EAL provides a single setting to limit the max SIMD bitwidth used by DPDK, 498 'rte_vect_set_max_simd_bitwidth(uint16_t bitwidth)' function, 500 … value can be overridden by the user using the EAL command-line option '--force-max-simd-bitwidth'. 503 the value of the max SIMD bitwidth must also be checked, and can be retrieved using the
|
| /f-stack/dpdk/doc/guides/rel_notes/ |
| H A D | release_20_11.rst | 80 * **Added support for limiting maximum SIMD bitwidth.** 85 ``--force-max-simd-bitwidth``.
|