Hello! I just updated to "Hybrid_dev_2026.03.08-182859" and noticed the message "Detected no AVX2 support" in the logs. I don't recall seeing that before. My CPU is an Intel i7-5930K and it does support AVX2 (https://www.intel.com/content/www/us/en/...tions.html). I don't believe AVX2 can be toggled via BIOS, and it is shown as an instruction via CPU-Z (shown in the attached screenshot). I've uploaded the debug output in a zip file due to upload size restrictions. Let me know if there's anything I need to do on my end to fix! Thanks for your time!
bool HybridMainWindow::cpuSupportsAVX2() const
{
unsigned int ebx = 0;
#ifdef _MSC_VER
int cpuInfo[4];
__cpuid(cpuInfo, 0);
if (cpuInfo[0] < 7)
return false;
__cpuidex(cpuInfo, 7, 0);
ebx = cpuInfo[1];
#elif Q_OS_WIN
unsigned int eax, ecx, edx;
unsigned int cpuInfo[4];
__cpuid(0, eax, ebx, ecx, edx);
if (eax < 7)
return false;
__cpuid_count(7, 0, eax, ebx, ecx, edx);
#endif
// Bit 5 of EBX in CPUID leaf 7 subleaf 0 indicates AVX2 support
return (ebx & (1 << 5)) != 0;
}
should be correct, so I suspect it's some detection or preset glitch.
Does this also happen if you:
a. restart Hybrid
b. clear the tools cache?
c. reset the defaults
Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page. Offline between (including) 29th of June and 5th of July => RochHarz Festival
Thank you for your response! That's very strange.
As for the questions:
a. Yes, restarted both Hybrid and my computer.
b. I'm assuming that is "Config -> Tools -> Clear all cached tool infos"? If so, then yes still happening.
c. Also yes after resetting to default.
15.03.2026, 21:17 (This post was last modified: 15.03.2026, 21:24 by Selur.)
Just to be sure: You are not running some VM, right?
If you run some antivirus software aside from Microsofts Defender, does it make a difference if you disable it?
(afaik. only sandbox software, malware detection, antivirus detection, benchmarking or over-/underclocking tools might interfere with the above code)
Cu Selur
Ps.: I added that code on 2025-05-13 and haven't changed it since then. (so every version after that has this code)
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page. Offline between (including) 29th of June and 5th of July => RochHarz Festival
Correct, this isn't a VM. It's a dual-boot system, Windows 11 and Linux.
No other anti-virus running, just Windows Defender. Tried disabling that as well but no change.
Edit: just tried booting Windows with both refind and Microsoft's bootloaders, no change.
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page. Offline between (including) 29th of June and 5th of July => RochHarz Festival
Okay, but Hybrid still shows "Detected no AVX2 support" ?
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page. Offline between (including) 29th of June and 5th of July => RochHarz Festival
Okay, will look into it and report back with a new test version in a bit.
Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page. Offline between (including) 29th of June and 5th of July => RochHarz Festival