From 98c775703e49f4d3e6d222c99e87a59a6b1f899c Mon Sep 17 00:00:00 2001 From: XMRig Date: Sun, 4 Aug 2024 20:00:12 +0700 Subject: [PATCH] Don't generate "rx/yada" profile, use the "rx" profile by default. --- src/backend/cpu/CpuConfig_gen.h | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/src/backend/cpu/CpuConfig_gen.h b/src/backend/cpu/CpuConfig_gen.h index 28b1cefdd..dd253c494 100644 --- a/src/backend/cpu/CpuConfig_gen.h +++ b/src/backend/cpu/CpuConfig_gen.h @@ -1,6 +1,6 @@ /* XMRig - * Copyright (c) 2018-2021 SChernykh - * Copyright (c) 2016-2021 XMRig , + * Copyright (c) 2018-2024 SChernykh + * Copyright (c) 2016-2024 XMRig , * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -126,11 +126,6 @@ size_t inline generate(Threads &threads, uint32 count += threads.move(Algorithm::kRX_WOW, std::move(wow)); } - if (!threads.isExist(Algorithm::RX_YADA)) { - auto yada = cpuInfo->threads(Algorithm::RX_YADA, limit); - count += threads.move(Algorithm::kRX_YADA, std::move(yada)); - } - count += generate(Algorithm::kRX, threads, Algorithm::RX_0, limit); return count;