diff --git a/libethash-cl/ethash_cl_miner.cpp b/libethash-cl/ethash_cl_miner.cpp index def4a4af4..48d54a755 100644 --- a/libethash-cl/ethash_cl_miner.cpp +++ b/libethash-cl/ethash_cl_miner.cpp @@ -376,9 +376,11 @@ bool ethash_cl_miner::init( computeCapability = computeCapabilityMajor * 10 + computeCapabilityMinor; int maxregs = computeCapability >= 35 ? 72 : 63; - sprintf(options, "-cl-nv-verbose -cl-nv-maxrregcount=%d", maxregs);// , computeCapability); + sprintf(options, "-cl-nv-maxrregcount=%d", maxregs);// , computeCapability); + } + else { + sprintf(options, ""); } - // create context m_context = cl::Context(vector(&device, &device + 1)); m_queue = cl::CommandQueue(m_context, device);