From 4063cdcef630822e5fbc79692114ef2f445ebbb7 Mon Sep 17 00:00:00 2001 From: Yagiz Nizipli Date: Sat, 24 Dec 2022 16:44:21 -0500 Subject: [PATCH] Revert "deps: disable avx512 for simutf on benchmark ci" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 09f33c9c530349b44eeaf00fe0cf847f87bea5ad. PR-URL: https://github.com/nodejs/node/pull/45948 Reviewed-By: Michaƫl Zasso Reviewed-By: Luigi Pinca --- deps/simdutf/simdutf.gyp | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/deps/simdutf/simdutf.gyp b/deps/simdutf/simdutf.gyp index 93c83e618c7a8f..baa6ad7e437956 100644 --- a/deps/simdutf/simdutf.gyp +++ b/deps/simdutf/simdutf.gyp @@ -1,9 +1,4 @@ { - 'variables': { - 'gas_version%': '0.0', - 'nasm_version%': '0.0', - 'llvm_version%': '0.0', - }, 'targets': [ { 'target_name': 'simdutf', @@ -13,16 +8,6 @@ 'include_dirs': ['.'], }, 'sources': ['simdutf.cpp'], - 'conditions': [ - ['OS=="linux"', { - 'conditions': [ - # TODO(anonrig): Remove this validation when benchmark CI has binutils >= 2.30 - ['v(gas_version) < v("2.30") and v(nasm_version) < v("2.14") and v(llvm_version) < v("6.0")', { - 'defines': ['SIMDUTF_IMPLEMENTATION_ICELAKE=0'], - }], - ], - }], - ], }, ] }