Skip to content

Commit

Permalink
fixed network file initialization for GPU device
Browse files Browse the repository at this point in the history
  • Loading branch information
masf7g committed Dec 3, 2021
1 parent 26340b6 commit 9ccc8d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gpd/net/openvino_classifier.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace
out_model_xml = std::string(MODELS_DIR) + "/fp32/single_view_15_channels.xml";
out_trained_file = std::string(MODELS_DIR) + "/fp32/single_view_15_channels.bin";
}
else if(device == Classifier::Device::eVPU || device == Classifier::Device::eVPU)
else if(device == Classifier::Device::eGPU || device == Classifier::Device::eVPU)
{
out_model_xml = std::string(MODELS_DIR) + "/fp16/single_view_15_channels.xml";
out_trained_file = std::string(MODELS_DIR) + "/fp16/single_view_15_channels.bin";
Expand Down

0 comments on commit 9ccc8d5

Please sign in to comment.