mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-19 06:33:57 +08:00
* Custom setproctitle (#32667) * add custom setproctitle * add test * Update poetry.lock * fix lint * support only Linux * test only Linux * final lint * Update test_setproctitle.py * Update setproctitle.py * convert to threadnames * delete proctitles * Check str len and use PR_GET_NAME * fix poetry.lock * lint fix * Update common/threadname.py --------- Co-authored-by: reddyn12 <nikhilr.ssm@gmail.com> Co-authored-by: Adeeb Shihadeh <adeebshihadeh@gmail.com> * revert that for now * use last 15 * fix * use name * update those * and modeld * rm --------- Co-authored-by: schlimeszn <138847413+schlimeszn@users.noreply.github.com> Co-authored-by: reddyn12 <nikhilr.ssm@gmail.com> Co-authored-by: Comma Device <device@comma.ai>
34 lines
720 B
Python
Executable File
34 lines
720 B
Python
Executable File
#!/usr/bin/env python3
|
|
import os
|
|
import time
|
|
import numpy as np
|
|
from multiprocessing import Process
|
|
from openpilot.common.threadname import setthreadname
|
|
|
|
def waste(core):
|
|
os.sched_setaffinity(0, [core,])
|
|
|
|
m1 = np.zeros((200, 200)) + 0.8
|
|
m2 = np.zeros((200, 200)) + 1.2
|
|
|
|
i = 1
|
|
st = time.monotonic()
|
|
j = 0
|
|
while 1:
|
|
if (i % 100) == 0:
|
|
setthreadname("%3d: %8d" % (core, i))
|
|
lt = time.monotonic()
|
|
print("%3d: %8d %f %.2f" % (core, i, lt-st, j))
|
|
st = lt
|
|
i += 1
|
|
j = np.sum(np.matmul(m1, m2))
|
|
|
|
def main(gctx=None):
|
|
print("1-2 seconds is baseline")
|
|
for i in range(os.cpu_count()):
|
|
p = Process(target=waste, args=(i,))
|
|
p.start()
|
|
|
|
if __name__ == "__main__":
|
|
main()
|