Mikemon/libs/tracy/profiler/src/winmainArchDiscovery.cpp
2025-03-15 11:28:57 +01:00

23 lines
258 B
C++

#ifdef _WIN32
namespace tracy
{
bool DiscoveryAVX()
{
#ifdef __AVX__
return true;
#else
return false;
#endif
}
bool DiscoveryAVX2()
{
#ifdef __AVX2__
return true;
#else
return false;
#endif
}
}
#endif