I'm trying to run examples from the 0.8.6 version on Simulaqron 4.0.0, specifically the teleportation.
First issue (solved) was with the epr_socket.create_keep()[0] on app_sender.py file that doesn't exit; apparently it currently is .create()[0]. Same with app_receiver.py containing epr_socket.recv_keep()[0].
Second issue was the timeout from epr_socket from receiver's side. It seems the receiver's EPR socket times out: TIMEOUT, no EPR generation received. and couldn't figure out what happened - there's not clear message. Regarding this I tried to:
change the app_id and epr_socket_id values from receiver to 1 on EPRSocket()'s epr_socket_id at app_receiver.py and EPRSocket()'s remote_epr_socket_id at app_sender.py to see whether there was a conflict over app_ids and epr_socket_ids from sender and receiver; however no success.
On the network.yaml parameters I set all the fidelity and gate_fidelity keys values to 1.0 and t1 and t2 to 0 so it would always pass all the generated qubits from one node to the other.
Any clues on why there's this timeout problem with epr_socket ?
I'm trying to run examples from the 0.8.6 version on Simulaqron 4.0.0, specifically the teleportation.
First issue (solved) was with the
epr_socket.create_keep()[0]
onapp_sender.py
file that doesn't exit; apparently it currently is.create()[0]
. Same withapp_receiver.py
containingepr_socket.recv_keep()[0]
.Second issue was the timeout from epr_socket from receiver's side. It seems the
receiver
's EPR socket times out:TIMEOUT, no EPR generation received.
and couldn't figure out what happened - there's not clear message. Regarding this I tried to:app_id
andepr_socket_id
values from receiver to1
onEPRSocket()
'sepr_socket_id
atapp_receiver.py
andEPRSocket()
'sremote_epr_socket_id
atapp_sender.py
to see whether there was a conflict overapp_id
s andepr_socket_id
s from sender and receiver; however no success.On the
network.yaml
parameters I set all thefidelity
andgate_fidelity
keys values to1.0
andt1
andt2
to0
so it would always pass all the generated qubits from one node to the other.Any clues on why there's this timeout problem with
epr_socket
?