Revert "Add AVX2 runtime checks (#10033)" (#10167)

This reverts commit cf8eb7700b.
This commit is contained in:
Michael Vines 2020-05-21 13:13:52 -07:00 committed by GitHub
parent 074c41556f
commit 486168b796
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 9 deletions

View File

@ -759,15 +759,6 @@ fn report_target_features() {
process::exit(1);
}
}
#[target_feature(enable = "avx2")]
{
if is_x86_feature_detected!("avx2") {
info!("AVX2 detected");
} else {
error!("Your machine does not have AVX2 support, please rebuild from source on your machine");
process::exit(1);
}
}
}
}