Skip to content
Snippets Groups Projects
Commit 7cbaaba5 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Fixes in tnl-benchmark-blas

parent 5ee34d29
No related branches found
No related tags found
No related merge requests found
......@@ -109,11 +109,12 @@ main( int argc, char* argv[] )
if( ! parseCommandLine( argc, argv, conf_desc, parameters ) ) {
conf_desc.printUsage( argv[ 0 ] );
return 1;
return EXIT_FAILURE;
}
Devices::Host::setup( parameters );
Devices::Cuda::setup( parameters );
if( ! Devices::Host::setup( parameters ) ||
! Devices::Cuda::setup( parameters ) )
return EXIT_FAILURE;
const String & logFileName = parameters.getParameter< String >( "log-file" );
const String & outputMode = parameters.getParameter< String >( "output-mode" );
......
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