aboutsummaryrefslogtreecommitdiff
path: root/test/performance/odp_stress.c
diff options
context:
space:
mode:
authorMatias Elo <matias.elo@nokia.com>2024-03-11 16:39:27 +0200
committerGitHub <noreply@github.com>2024-03-11 16:39:27 +0200
commit8063101c4fac56e16c5a2bb9843f2fd9c5acbfd7 (patch)
tree63e2500c41ea7d1e4714236561be641b1639f287 /test/performance/odp_stress.c
parentc00ef7d6bce1e483c4cf1bb3cdf6cd629530d795 (diff)
parent9ff786ed3d9d553f8e108eff4ee4ceec4adb585e (diff)
Merge ODP v1.44.0.0v1.44.0.0_DPDK_22.11
Merge ODP linux-generic v1.44.0.0 into linux-dpdk.
Diffstat (limited to 'test/performance/odp_stress.c')
-rw-r--r--test/performance/odp_stress.c16
1 files changed, 12 insertions, 4 deletions
diff --git a/test/performance/odp_stress.c b/test/performance/odp_stress.c
index 84bc4fe6c..3ec01df33 100644
--- a/test/performance/odp_stress.c
+++ b/test/performance/odp_stress.c
@@ -4,6 +4,14 @@
* SPDX-License-Identifier: BSD-3-Clause
*/
+/**
+ * @example odp_stress.c
+ *
+ * Test application that can be used to stress CPU, memory, and HW accelerators.
+ *
+ * @cond _ODP_HIDE_FROM_DOXYGEN_
+ */
+
#include <stdio.h>
#include <string.h>
#include <stdint.h>
@@ -73,8 +81,8 @@ static void print_usage(void)
"Stress test options:\n"
"\n"
" -c, --num_cpu Number of CPUs (worker threads). 0: all available CPUs. Default: 1\n"
- " -p, --period_ns Timeout period in nsec. Default: 1 sec\n"
- " -r, --rounds Number of timeout rounds. Default: 10\n"
+ " -p, --period_ns Timeout period in nsec. Default: 100 ms\n"
+ " -r, --rounds Number of timeout rounds. Default: 2\n"
" -m, --mode Select test mode. Default: 1\n"
" 0: No stress, just wait for timeouts\n"
" 1: Memcpy\n"
@@ -106,8 +114,8 @@ static int parse_options(int argc, char *argv[], test_options_t *test_options)
static const char *shortopts = "+c:p:r:m:s:g:h";
test_options->num_cpu = 1;
- test_options->period_ns = 1000 * ODP_TIME_MSEC_IN_NS;
- test_options->rounds = 10;
+ test_options->period_ns = 100 * ODP_TIME_MSEC_IN_NS;
+ test_options->rounds = 2;
test_options->mode = 1;
test_options->mem_size = 2048;
test_options->group_mode = 1;