diff --git a/core/src/validator.rs b/core/src/validator.rs index 72921a2a83..55b0fd5715 100644 --- a/core/src/validator.rs +++ b/core/src/validator.rs @@ -783,15 +783,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); - } - } } }