Update 01-oldcpu.sh

This commit is contained in:
Alexandre
2024-12-28 09:56:37 +01:00
committed by GitHub
parent 63bb3b5560
commit bae175c3da

View File

@@ -3,7 +3,7 @@
set -e
# Compensate for old cpu without avx2
if lscpu | grep -q "Flags" && ! lscpu | grep -q "avx2"; then
if [[ "$(uname -m)" = "x86_64" && lscpu | grep -q "Flags" && ! lscpu | grep -q "avx2" ]]; then
bashio::log.warning "NON SUPPORTED CPU DETECTED"
bashio::log.warning "Your cpu doesn't support avx2, the analyzer service will likely won't work"
bashio::log.warning "Trying to install tensorflow instead of tflite_runtime instead"