#pragma once #include "amd_gpu/gpu.hpp" #include "autoAdjust.hpp" #include "jconf.hpp" #include "xmrstak/misc/console.hpp" #include "xmrstak/misc/configEditor.hpp" #include "xmrstak/params.hpp" #include "xmrstak/backend/cryptonight.hpp" #include "xmrstak/jconf.hpp" #include #include #include #include #include #include #if defined(__APPLE__) #include #else #include #endif namespace xmrstak { namespace amd { class autoAdjust { public: autoAdjust() { } /** print the adjusted values if needed * * Routine exit the application and print the adjusted values if needed else * nothing is happened. */ bool printConfig() { int platformIndex = getAMDPlatformIdx(); if(platformIndex == -1) { printer::inst()->print_msg(L0,"WARNING: No AMD OpenCL platform found. Possible driver issues or wrong vendor driver."); return false; } devVec = getAMDDevices(platformIndex); int deviceCount = devVec.size(); if(deviceCount == 0) { printer::inst()->print_msg(L0,"WARNING: No AMD device found."); return false; } generateThreadConfig(platformIndex); return true; } private: void generateThreadConfig(const int platformIndex) { // load the template of the backend config into a char variable const char *tpl = #include "./config.tpl" ; configEditor configTpl{}; configTpl.set( std::string(tpl) ); constexpr size_t byteToMiB = 1024u * 1024u; size_t hashMemSize = cn_select_memory(::jconf::inst()->GetMiningAlgo()); std::string conf; for(auto& ctx : devVec) { /* 1000 is a magic selected limit, the reason is that more than 2GiB memory * sowing down the memory performance because of TLB cache misses */ size_t maxThreads = 1000u; if( ctx.name.compare("gfx901") == 0 || ctx.name.compare("gfx904") == 0 || // APU ctx.name.compare("gfx902") == 0 || // UNKNOWN ctx.name.compare("gfx900") == 0 || ctx.name.compare("gfx903") == 0 || ctx.name.compare("gfx905") == 0 ) { /* Increase the number of threads for AMD VEGA gpus. * Limit the number of threads based on the issue: https://github.com/fireice-uk/xmr-stak/issues/5#issuecomment-339425089 * to avoid out of memory errors */ maxThreads = 2024u; } // increase all intensity limits by two for aeon if(::jconf::inst()->GetMiningAlgo() == cryptonight_lite) maxThreads *= 2u; // keep 128MiB memory free (value is randomly chosen) size_t availableMem = ctx.freeMem - (128u * byteToMiB); // 224byte extra memory is used per thread for meta data size_t perThread = hashMemSize + 224u; size_t maxIntensity = availableMem / perThread; size_t possibleIntensity = std::min( maxThreads , maxIntensity ); // map intensity to a multiple of the compute unit count, 8 is the number of threads per work group size_t intensity = (possibleIntensity / (8 * ctx.computeUnits)) * ctx.computeUnits * 8; //If the intensity is 0, then it's because the multiple of the unit count is greater than intensity if (intensity == 0) { printer::inst()->print_msg(L0, "WARNING: Auto detected intensity unexpectedly low. Try to set the environment variable GPU_SINGLE_ALLOC_PERCENT."); intensity = possibleIntensity; } if (intensity != 0) { conf += std::string(" // gpu: ") + ctx.name + " memory:" + std::to_string(availableMem / byteToMiB) + "\n"; conf += std::string(" // compute units: ") + std::to_string(ctx.computeUnits) + "\n"; // set 8 threads per block (this is a good value for the most gpus) conf += std::string(" { \"index\" : ") + std::to_string(ctx.deviceIdx) + ",\n" + " \"intensity\" : " + std::to_string(intensity) + ", \"worksize\" : " + std::to_string(8) + ",\n" + " \"affine_to_cpu\" : false, \"strided_index\" : 1, \"mem_chunk\" : 2,\n" " \"comp_mode\" : true\n" + " },\n"; } else { printer::inst()->print_msg(L0, "WARNING: Ignore gpu %s, %s MiB free memory is not enough to suggest settings.", ctx.name.c_str(), std::to_string(availableMem / byteToMiB).c_str()); } } configTpl.replace("PLATFORMINDEX",std::to_string(platformIndex)); configTpl.replace("GPUCONFIG",conf); configTpl.write(params::inst().configFileAMD); printer::inst()->print_msg(L0, "AMD: GPU configuration stored in file '%s'", params::inst().configFileAMD.c_str()); } std::vector devVec; }; } // namespace amd } // namepsace xmrstak