NSVR
New Contributor
5 years agoRuntimeError: 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)