I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 0de1ca16 authored by zzz's avatar zzz Committed by str4d
Browse files

CPUID: Restore AES-NI diagnostic output, inadvertently removed

parent 9445690c
No related branches found
No related tags found
No related merge requests found
......@@ -354,6 +354,7 @@ public class CPUID {
System.out.println("CPU has SSE4.1: " + c.hasSSE41());
System.out.println("CPU has SSE4.2: " + c.hasSSE42());
System.out.println("CPU has SSE4A: " + c.hasSSE4A());
System.out.println("CPU has AES-NI: " + c.hasAES());
System.out.println("CPU has AVX: " + c.hasAVX());
System.out.println("CPU has AVX2: " + c.hasAVX2());
System.out.println("CPU has AVX512: " + c.hasAVX512());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment