Skip to content

Commit

Permalink
Displaying the cuda devices directly, like opencl
Browse files Browse the repository at this point in the history
  • Loading branch information
smurfy committed Sep 9, 2017
1 parent 3617f85 commit e3a1cdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libethash-cuda/ethash_cuda_miner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ void ethash_cuda_miner::listDevices()
outString += "\tCompute version: " + to_string(props.major) + "." + to_string(props.minor) + "\n";
outString += "\tcudaDeviceProp::totalGlobalMem: " + to_string(props.totalGlobalMem) + "\n";
}
ETHCUDA_LOG(outString);
std::cout << outString;
}
catch(std::runtime_error const& err)
{
Expand Down

0 comments on commit e3a1cdb

Please sign in to comment.