Lines Matching +full:3 +full:p0

169 struct params p0;  variable
172 OPT_INTEGER('p', "nr_proc" , &p0.nr_proc, "number of processes"),
173 OPT_INTEGER('t', "nr_threads" , &p0.nr_threads, "number of threads per process"),
175 OPT_STRING('G', "mb_global" , &p0.mb_global_str, "MB", "global memory (MBs)"),
176 OPT_STRING('P', "mb_proc" , &p0.mb_proc_str, "MB", "process memory (MBs)"),
177 …OPT_STRING('L', "mb_proc_locked", &p0.mb_proc_locked_str,"MB", "process serialized/locked memory a…
178 OPT_STRING('T', "mb_thread" , &p0.mb_thread_str, "MB", "thread memory (MBs)"),
180 OPT_UINTEGER('l', "nr_loops" , &p0.nr_loops, "max number of loops to run (default: unlimited)"),
181 OPT_UINTEGER('s', "nr_secs" , &p0.nr_secs, "max number of seconds to run (default: 5 secs)"),
182 OPT_UINTEGER('u', "usleep" , &p0.sleep_usecs, "usecs to sleep per loop iteration"),
184 …OPT_BOOLEAN('R', "data_reads" , &p0.data_reads, "access the data via reads (can be mixed with -W)"…
185 …OPT_BOOLEAN('W', "data_writes" , &p0.data_writes, "access the data via writes (can be mixed with -…
186 OPT_BOOLEAN('B', "data_backwards", &p0.data_backwards, "access the data backwards as well"),
187 OPT_BOOLEAN('Z', "data_zero_memset", &p0.data_zero_memset,"access the data via glibc bzero only"),
188 …OPT_BOOLEAN('r', "data_rand_walk", &p0.data_rand_walk, "access the data with random (32bit LFSR) w…
191 OPT_BOOLEAN('z', "init_zero" , &p0.init_zero, "bzero the initial allocations"),
192 …OPT_BOOLEAN('I', "init_random" , &p0.init_random, "randomize the contents of the initial allocatio…
193 OPT_BOOLEAN('0', "init_cpu0" , &p0.init_cpu0, "do the initial allocations on CPU#0"),
194 …OPT_INTEGER('x', "perturb_secs", &p0.perturb_secs, "perturb thread 0/0 every X secs, to test conve…
196 OPT_INCR ('d', "show_details" , &p0.show_details, "Show details"),
197 OPT_INCR ('a', "all" , &p0.run_all, "Run all tests in the suite"),
198 OPT_INTEGER('H', "thp" , &p0.thp, "MADV_NOHUGEPAGE < 0 < MADV_HUGEPAGE"),
199 OPT_BOOLEAN('c', "show_convergence", &p0.show_convergence, "show convergence details, "
201 OPT_BOOLEAN('m', "measure_convergence", &p0.measure_convergence, "measure convergence latency"),
204 OPT_BOOLEAN('S', "serialize-startup", &p0.serialize_startup,"serialize thread startup"),
531 p0.cpu_list_str = strdup(arg); in parse_cpu_list()
533 dprintf("got CPU list: {%s}\n", p0.cpu_list_str); in parse_cpu_list()
730 p0.node_list_str = strdup(arg); in parse_node_list()
732 dprintf("got NODE list: {%s}\n", p0.node_list_str); in parse_node_list()
1164 tprintf(" l:%3d-%-3d (%3d)", in calc_convergence()
1357 if (details >= 3) { in worker_thread()
1429 if (g->p.show_details >= 3) { in worker_process()
1522 g->p = p0; in init()
1845 init_params(&p0, name, argc, argv); in run_bench_numa()
1894 { " 1x3-convergence,", "mem", "-p", "1", "-t", "3", "-P", "512", OPT_CONV },
1897 { " 2x3-convergence,", "mem", "-p", "2", "-t", "3", "-P", "1020", OPT_CONV },
1898 { " 3x3-convergence,", "mem", "-p", "3", "-t", "3", "-P", "1020", OPT_CONV },
1907 { " 3x1-convergence,", "mem", "-p", "3", "-t", "1", "-P", "512", OPT_CONV },
1915 { " 3x1-bw-process,", "mem", "-p", "3", "-t", "1", "-P", "1024", OPT_BW },
1927 { " 2x3-bw-process,", "mem", "-p", "2", "-t", "3", "-P", "512", OPT_BW },
1933 { " 3x3-bw-process,", "mem", "-p", "3", "-t", "3", "-P", "512", OPT_BW },
1966 init_params(&p0, "main,", argc, argv); in bench_numa()
1971 if (p0.run_all) in bench_numa()