| 24 | } |
| 25 | |
| 26 | FORCE_INLINE std::string functionSelectorToHex(uint32_t x) |
| 27 | { |
| 28 | std::stringstream ss; |
| 29 | ss << "0x" << std::setfill('0') << std::setw(sizeof(uint32_t) * 2) << std::hex << x; |
| 30 | return ss.str(); |
| 31 | } |
| 32 | |
| 33 | #if defined (__AVX2__) |
| 34 | #include <immintrin.h> |
nothing calls this directly
no outgoing calls
no test coverage detected