-
Notifications
You must be signed in to change notification settings - Fork 288
Closed
Labels
Apple M1Apple M1 related issuesApple M1 related issuesbugSomething isn't workingSomething isn't working
Milestone
Description
The library detects asimd via
info.features.asimd = GetDarwinSysCtlByName("hw.optional.AdvSIMD");
However,
sysctl -a | grep -i simd
hw.optional.arm.AdvSIMD: 1
I.e. I suggest to fix this by
info.features.asimd = GetDarwinSysCtlByName("hw.optional.AdvSIMD") || GetDarwinSysCtlByName("hw.optional.arm.AdvSIMD");
for backward compatibility.
Metadata
Metadata
Assignees
Labels
Apple M1Apple M1 related issuesApple M1 related issuesbugSomething isn't workingSomething isn't working