Lines Matching +full:runs +full:- +full:on
4 * SPDX-License-Identifier: Apache-2.0
23 * 4. The partner thread then runs and calls z_pend_curr() again
40 static struct k_thread busy_thread[CONFIG_MP_MAX_NUM_CPUS - 1];
44 static K_THREAD_STACK_ARRAY_DEFINE(busy_thread_stack, CONFIG_MP_MAX_NUM_CPUS - 1,
111 /* Spawn busy threads that will execute on the other cores */ in main()
112 for (uint32_t i = 0; i < CONFIG_MP_MAX_NUM_CPUS - 1; i++) { in main()
123 int partner_prio = main_prio - 1; in main()
134 uint32_t runs = 0U; in main() local
156 uint32_t avg, whole = stamps[4] - stamps[0]; in main()
158 if (++runs > N_SETTLE) { in main()
160 * runs to let performance settle, cache in main()
165 avg = tot / (runs - 10); in main()
171 /* For reference, an unmodified HEAD on qemu_x86 with in main()
172 * !USERSPACE and SCHED_SIMPLE and using -icount in main()
178 stamps[1] - stamps[0], in main()
179 stamps[2] - stamps[1], in main()
180 stamps[3] - stamps[2], in main()
181 stamps[4] - stamps[3], in main()