From 88e3831bc6623067e80f20de1ba5f25c7035a27c Mon Sep 17 00:00:00 2001 From: JeLuF Date: Sun, 5 Mar 2023 00:13:07 +0100 Subject: [PATCH] Remove AVX check https://discord.com/channels/1014774730907209781/1064237509913084087/1064237509913084087 --- scripts/bootstrap.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 8c5a248a..f4591ac3 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -30,9 +30,6 @@ if ! which tar; then fail "'tar' not found. Please install tar."; fi if ! which bzip2; then fail "'bzip2' not found. Please install bzip2."; fi if pwd | grep ' '; then fail "The installation directory's path contains a space character. Conda will fail to install. Please change the directory."; fi -if [ -f /proc/cpuinfo ]; then - if ! cat /proc/cpuinfo | grep avx | uniq; then fail "Your CPU doesn't support AVX."; fi -fi # https://mamba.readthedocs.io/en/latest/installation.html if [ "$OS_NAME" == "linux" ] && [ "$OS_ARCH" == "arm64" ]; then OS_ARCH="aarch64"; fi