- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
Suppose I have more than one Arria 10 Development Kits installed on the motherboard, how can I select which board to use for a given inference request?
링크가 복사됨
4 응답
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
Hi James,
To use multiple FPGAs you can do so by specifying the KEY_DEVICE_ID and the number. In this example I have 2 FPGAs:
ExecutableNetwork excutable_network1 = plugin.LoadNetwork(network, {InferenceEngine::PluginConfigParams::KEY_DEVICE_ID, "0"}); ExecutableNetwork excutable_network1 = plugin.LoadNetwork(network, {InferenceEngine::PluginConfigParams::KEY_DEVICE_ID, "1"});
Then from here you can create the infer request for each FPGA respectively.
Kind Regards,
Monique Jones
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
Hi James,
Yes, that is correct.
Kind Regards,
Monique Jones
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
The code that Monique specified appears to require double curly braces for compilation:
ExecutableNetwork executable_network = plugin.LoadNetwork(network, {{InferenceEngine::PluginConfigParams::KEY_DEVICE_ID, "0"}});
