Skip to content

Commit

Permalink
correct ARM Mali detection for opencv#13108
Browse files Browse the repository at this point in the history
  • Loading branch information
ayaromenok committed Nov 27, 2018
1 parent 8b544a8 commit 58c4b72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/core/src/ocl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1254,7 +1254,7 @@ struct Device::Impl
vendorID_ = VENDOR_INTEL;
else if (vendorName_ == "NVIDIA Corporation")
vendorID_ = VENDOR_NVIDIA;
else if (vendorName_ == "ARM Platform")
else if (vendorName_ == "ARM")
{
std::cout << "vendor name: " << vendorName_ << std::endl;
vendorID_ = VENDOR_ARM;
Expand Down

0 comments on commit 58c4b72

Please sign in to comment.