#
e0a8442c |
| 16-Aug-2023 |
Bruce Richardson <bruce.richardson@intel.com> |
test: tag tests type
Rather than having the test types called out in the meson.build file, we can use macros to identify the test type in the C file itself and then dynamically build up the tests li
test: tag tests type
Rather than having the test types called out in the meson.build file, we can use macros to identify the test type in the C file itself and then dynamically build up the tests lists at config time.
Signed-off-by: Bruce Richardson <bruce.richardson@intel.com> Acked-by: Morten Brørup <mb@smartsharesystems.com>
show more ...
|
#
6dfcdf8f |
| 15-Nov-2021 |
Conor Walsh <conor.walsh@intel.com> |
test/thash: fix build with clang 13
run_rss_calc() is used to compare the number of cycles spent computing a hash value for different implementations. clang 13 reports the hash variable as being unu
test/thash: fix build with clang 13
run_rss_calc() is used to compare the number of cycles spent computing a hash value for different implementations. clang 13 reports the hash variable as being unused, but run_rss_calc() needs this variable as a placeholder for computing the hash value.
Bugzilla ID: 881 Fixes: 239fffe0402e ("test/thash: add performance tests for Toeplitz hash")
Reported-by: Liang Longfeng <longfengx.liang@intel.com> Signed-off-by: Conor Walsh <conor.walsh@intel.com> Acked-by: Vladimir Medvedkin <vladimir.medvedkin@intel.com> Reviewed-by: David Marchand <david.marchand@redhat.com>
show more ...
|
#
239fffe0 |
| 02-Nov-2021 |
Vladimir Medvedkin <vladimir.medvedkin@intel.com> |
test/thash: add performance tests for Toeplitz hash
This patch adds performance tests for the following Toeplitz hash function implementations: Scalar: - rte_softrss() - rte_softrss_be()
test/thash: add performance tests for Toeplitz hash
This patch adds performance tests for the following Toeplitz hash function implementations: Scalar: - rte_softrss() - rte_softrss_be() Vector using gfni: - rte_thash_gfni() - rte_thash_gfni_bulk()
Signed-off-by: Vladimir Medvedkin <vladimir.medvedkin@intel.com>
show more ...
|