mirror of
https://github.com/wassname/pytorch-lightning.git
synced 2026-09-10 12:21:57 +08:00
added auto port find
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import socket
|
||||
|
||||
s = socket.socket()
|
||||
host = socket.gethostname() # Get local machine name
|
||||
port = 12910 # Reserve a port for your service.
|
||||
s.bind((host, port)) # Bind to the port
|
||||
|
||||
s.listen(5) # Now wait for client connection.
|
||||
while True:
|
||||
c, addr = s.accept() # Establish connection with client.
|
||||
Reference in New Issue
Block a user