Add Benchmark Sequential

This commit is contained in:
TXuian 2022-12-09 21:18:22 +08:00
parent 6c2f9de87e
commit 56f0c9066a
1 changed files with 0 additions and 2 deletions

View File

@ -142,7 +142,6 @@ void *run_benchmark_parallel(void *args) {
.next = NULL,
};
init_benchmark_runset(&head);
print_result();
printf("[BENCHMARK] Start Benchmark running parallel.\n");
case_attr.schedparam.sched_priority = 30;
@ -176,7 +175,6 @@ void *run_benchmark_sequential(void *args) {
.next = NULL,
};
init_benchmark_runset(&head);
print_result();
printf("[BENCHMARK] Start Benchmark running sequential.\n");
benchmark_handle *cur_handle = head.next;
while (NULL != cur_handle) {