Forum Discussion

NSVR's avatar
NSVR
Icon for New Contributor rankNew Contributor
5 years ago

RuntimeError: Device with "nodes=1:i5-6500te:hddl-f" name is not registered in the InferenceEngine

Hi,

I was trying to inference on FPGA. I see in one of the sample notebooks, to access FPGA we need to pass device = "nodes=1:i5-6500te:hddl-f". I am getting Runtime error.

exec_net = ie.load_network(network=net, num_requests=2, device_name=device)

# store name of input and output blobs
input_blob = next(iter(net.input_info))
output_blob = next(iter(net.outputs))

# read the input's dimensions: n=batch size, c=number of channels, h=height, w=width
n, c, h, w = net.input_info[input_blob].input_data.shape
print("Loaded model into Inference Engine for device:", device, 
      "\nModel input dimensions: n=",n,", c=",c,", h=",h,", w=",w)

2 Replies

  • Hi,


    Thanks for posting in Intel forums.


    Since your issue is related to FPGA ,we are moving this query to FPGA forum.


    • NSVR's avatar
      NSVR
      Icon for New Contributor rankNew Contributor
      Can someone please give reply to this question