Home
last modified time | relevance | path

Searched refs:cpu_int (Results 1 – 2 of 2) sorted by relevance

/Linux-v6.6/tools/power/x86/amd_pstate_tracer/
Damd_pstate_trace.py156 def store_csv(cpu_int, time_pre_dec, time_post_dec, min_perf, des_perf, max_perf, freq_ghz, mperf, … argument
161 if cpu_mask[cpu_int] == 0:
166 …%05u, %06u, %u, %u, %u, %.4f, %u, %u, %u, %.2f, %.3f, %u, %.3f, %s\n" % (cpu_int, int(time_pre_dec…
205 cpu_int = int(cpu)
206 cpu = str(cpu_int)
224 if last_sec_cpu[cpu_int] == 0 :
225 last_sec_cpu[cpu_int] = time_pre_dec
226 last_usec_cpu[cpu_int] = time_post_dec
228 … = (int(time_pre_dec) - int(last_sec_cpu[cpu_int])) * 1000000 + (int(time_post_dec) - int(last_use…
230 last_sec_cpu[cpu_int] = time_pre_dec
[all …]
/Linux-v6.6/tools/power/x86/intel_pstate_tracer/
Dintel_pstate_tracer.py326 def store_csv(cpu_int, time_pre_dec, time_post_dec, core_busy, scaled, _from, _to, mperf, aperf, ts… argument
331 if cpu_mask[cpu_int] == 0:
336 …, %u, %u, %u, %u, %u, %u, %.4f, %u, %.2f, %.3f, %u, %.3f, %.3f, %s\n" % (cpu_int, int(time_pre_dec…
439 cpu_int = int(cpu)
440 cpu = str(cpu_int)
464 if last_sec_cpu[cpu_int] == 0 :
465 last_sec_cpu[cpu_int] = time_pre_dec
466 last_usec_cpu[cpu_int] = time_post_dec
468 … = (int(time_pre_dec) - int(last_sec_cpu[cpu_int])) * 1000000 + (int(time_post_dec) - int(last_use…
470 last_sec_cpu[cpu_int] = time_pre_dec
[all …]