(host, port, device_key, timeout)
| 539 | |
| 540 | |
| 541 | def _target(host, port, device_key, timeout): |
| 542 | client = rpc.connect_tracker(host, port) |
| 543 | remote = client.request(device_key, session_timeout=timeout) |
| 544 | while True: |
| 545 | pass |
| 546 | remote.cpu() |
| 547 | |
| 548 | |
| 549 | @pytest.mark.skipif(not env.has_rpc(), reason="need rpc") |
nothing calls this directly
no test coverage detected
searching dependent graphs…