Add Benchmark Sequential

This commit is contained in:
TXuian 2022-12-09 21:22:44 +08:00
parent 6a9a18417b
commit 54a1125583
1 changed files with 1 additions and 1 deletions

View File

@ -202,7 +202,7 @@ void *run_benchmark_sequential(void *args) {
pthread_t main_thread; pthread_t main_thread;
static int embenchmark_parallel(int argc, char *argv[]) { static int embenchmark_parallel(int argc, char *argv[]) {
case_attr.schedparam.sched_priority = 30; case_attr.schedparam.sched_priority = 30;
case_attr.stacksize = 16384; case_attr.stacksize = 4096;
PrivTaskCreate(&main_thread, &case_attr, run_benchmark_parallel, NULL); PrivTaskCreate(&main_thread, &case_attr, run_benchmark_parallel, NULL);
return 0; return 0;
} }