We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34a7345 commit af6c619Copy full SHA for af6c619
1 file changed
HashLib/src/Include/HashLib.inc
@@ -62,8 +62,11 @@
62
63
{============================== SIMD Settings =================================}
64
65
-// Uncomment ONE of the following to force a specific SIMD dispatch level:
+// Uncomment to force scalar dispatch (available on all platforms):
66
// {$DEFINE HASHLIB_FORCE_SCALAR}
67
+
68
+{$IFDEF HASHLIB_X86_64}
69
+// Uncomment ONE to force a specific x86-64 SIMD dispatch level:
70
// {$DEFINE HASHLIB_FORCE_SSE2}
71
// {$DEFINE HASHLIB_FORCE_SSSE3}
72
@@ -72,5 +75,6 @@
75
OR (DEFINED(HASHLIB_FORCE_SSE2) AND DEFINED(HASHLIB_FORCE_SSSE3))}
73
76
{$MESSAGE ERROR 'Only one HASHLIB_FORCE_* define may be enabled at a time.'}
74
77
{$IFEND}
78
+{$ENDIF}
79
80
(* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& *)
0 commit comments