Add Benchmark Sequential
This commit is contained in:
parent
6c2f9de87e
commit
56f0c9066a
|
@ -142,7 +142,6 @@ void *run_benchmark_parallel(void *args) {
|
||||||
.next = NULL,
|
.next = NULL,
|
||||||
};
|
};
|
||||||
init_benchmark_runset(&head);
|
init_benchmark_runset(&head);
|
||||||
print_result();
|
|
||||||
printf("[BENCHMARK] Start Benchmark running parallel.\n");
|
printf("[BENCHMARK] Start Benchmark running parallel.\n");
|
||||||
|
|
||||||
case_attr.schedparam.sched_priority = 30;
|
case_attr.schedparam.sched_priority = 30;
|
||||||
|
@ -176,7 +175,6 @@ void *run_benchmark_sequential(void *args) {
|
||||||
.next = NULL,
|
.next = NULL,
|
||||||
};
|
};
|
||||||
init_benchmark_runset(&head);
|
init_benchmark_runset(&head);
|
||||||
print_result();
|
|
||||||
printf("[BENCHMARK] Start Benchmark running sequential.\n");
|
printf("[BENCHMARK] Start Benchmark running sequential.\n");
|
||||||
benchmark_handle *cur_handle = head.next;
|
benchmark_handle *cur_handle = head.next;
|
||||||
while (NULL != cur_handle) {
|
while (NULL != cur_handle) {
|
||||||
|
|
Loading…
Reference in New Issue