mirror of
https://github.com/opencv/opencv.git
synced 2025-08-06 06:26:29 +08:00
Avoid detecting dublicate CUDA archs
This commit is contained in:
parent
0e80f56e44
commit
e136c11c7c
@ -1,14 +1,25 @@
|
|||||||
#include <stdio.h>
|
#include <iostream>
|
||||||
|
#include <sstream>
|
||||||
|
#include <list>
|
||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
|
std::ostringstream arch;
|
||||||
|
std::list<std::string> archs;
|
||||||
|
|
||||||
int count = 0;
|
int count = 0;
|
||||||
if (cudaSuccess != cudaGetDeviceCount(&count)){return -1;}
|
if (cudaSuccess != cudaGetDeviceCount(&count)){ return -1; }
|
||||||
if (count == 0) {return -1;}
|
if (count == 0) { return -1; }
|
||||||
for (int device = 0; device < count; ++device)
|
for (int device = 0; device < count; ++device)
|
||||||
{
|
{
|
||||||
cudaDeviceProp prop;
|
cudaDeviceProp prop;
|
||||||
if (cudaSuccess != cudaGetDeviceProperties(&prop, device)){ continue;}
|
if (cudaSuccess != cudaGetDeviceProperties(&prop, device)){ continue; }
|
||||||
printf("%d.%d ", prop.major, prop.minor);
|
arch << prop.major << "." << prop.minor;
|
||||||
|
archs.push_back(arch.str());
|
||||||
|
arch.str("");
|
||||||
}
|
}
|
||||||
|
archs.unique(); #Some devices might have the same arch
|
||||||
|
for (std::list<std::string>::iterator it=archs.begin(); it!=archs.end(); ++it)
|
||||||
|
std::cout << *it << " ";
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user