Skip to content

Conversation

tifish
Copy link

@tifish tifish commented Aug 20, 2024

Support command line arguments to test CPU features by script.
For example:

  • Windows
FeatureDetector.exe AMD "Safe to use AVX"
if errorlevel 1 (
    echo AVX not supported
)
  • Linux
./FeatureDetector AMD "Safe to use AVX"
if [ $? -ne 0 ]; then
    echo AVX not supported
fi
  • Output:
AMD = No
Final = No

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant