Skip to content

Support command line arguments to test CPU features by script #17

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

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