Skip to content
Snippets Groups Projects
Commit abdf0036 authored by Tomáš Oberhuber's avatar Tomáš Oberhuber
Browse files

Fixed getDeviceType method in Cuda and MIC.

parent 92f4b5a7
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,7 @@ Timer Cuda::smartPointersSynchronizationTimer;
String Cuda::getDeviceType()
{
return String( "Cuda" );
return String( "Devices::Cuda" );
}
int Cuda::getNumberOfBlocks( const int threads,
......
......@@ -71,7 +71,7 @@ class MIC
static String getDeviceType()
{
return String( "MIC" );
return String( "Devices::MIC" );
};
#ifdef HAVE_MIC
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment