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

Commit

Permalink
alter avx test to accomodate aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
el-tocino authored Sep 14, 2021
1 parent 9e9f2f7 commit 32812f6
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 32812f6

Please sign in to comment.