Skip to content
This repository has been archived by the owner on Sep 8, 2024. It is now read-only.

Commit

Permalink
Merge pull request #3000 from el-tocino/bugfix/2999
Browse files Browse the repository at this point in the history
alter avx test to accomodate aarch64
  • Loading branch information
krisgesling authored Sep 28, 2021
2 parents 2a6bb90 + 32812f6 commit 039c84e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ your environment.'
sleep 0.5
# The AVX instruction set is an x86 construct
# ARM has a range of equivalents, unsure which are (un)supported by TF.
if ! grep -q avx /proc/cpuinfo && [[ ! $(uname -m) == 'arm'* ]]; then
if ! grep -q avx /proc/cpuinfo && ! [[ $(uname -m) == 'arm'* || $(uname -m) == 'aarch64' ]]; then
echo "
The Precise Wake Word Engine requires the AVX instruction set, which is
not supported on your CPU. Do you want to fall back to the PocketSphinx
Expand Down

0 comments on commit 039c84e

Please sign in to comment.