mirror of https://github.com/tteck/Proxmox.git
Update photoprism-install.sh
Use regex to determine if CPU has avx capabilities If no avx capabilities detected swith to cpu tensorflow automatically
This commit is contained in:
parent
ef710165a7
commit
68830d02e3
|
@ -103,29 +103,14 @@ chown root:root /usr/local/sbin/gosu
|
|||
chmod 755 /usr/local/sbin/gosu
|
||||
msg_ok "Installed Golang"
|
||||
|
||||
read -p "Check For Advanced Vector Extensions? " -n 1 -r
|
||||
echo
|
||||
if [[ $REPLY =~ ^[Yy]$ ]]
|
||||
then
|
||||
check=yes
|
||||
else
|
||||
check=no
|
||||
fi
|
||||
|
||||
msg_info "Installing Tensorflow"
|
||||
if [ "$check" == "yes" ]; then
|
||||
if [[ "$AVX" == "avx2" ]]; then
|
||||
if [[ "$AVX" =~ avx2 ]]; then
|
||||
wget https://dl.photoprism.org/tensorflow/linux/libtensorflow-linux-avx2-1.15.2.tar.gz &>/dev/null
|
||||
tar -C /usr/local -xzf libtensorflow-linux-avx2-1.15.2.tar.gz &>/dev/null
|
||||
elif [[ "$AVX" == "avx" ]]; then
|
||||
elif [[ "$AVX" =~ avx ]]; then
|
||||
wget https://dl.photoprism.org/tensorflow/linux/libtensorflow-linux-avx-1.15.2.tar.gz &>/dev/null
|
||||
tar -C /usr/local -xzf libtensorflow-linux-avx-1.15.2.tar.gz &>/dev/null
|
||||
elif [[ "$AVX" == " " ]]; then
|
||||
wget https://dl.photoprism.org/tensorflow/linux/libtensorflow-linux-cpu-1.15.2.tar.gz &>/dev/null
|
||||
tar -C /usr/local -xzf libtensorflow-linux-cpu-1.15.2.tar.gz &>/dev/null
|
||||
fi
|
||||
fi
|
||||
if [ "$check" == "no" ]; then
|
||||
else
|
||||
wget https://dl.photoprism.org/tensorflow/linux/libtensorflow-linux-cpu-1.15.2.tar.gz &>/dev/null
|
||||
tar -C /usr/local -xzf libtensorflow-linux-cpu-1.15.2.tar.gz &>/dev/null
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue