From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id A76D445A6C; Mon, 30 Sep 2024 19:51:26 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8B3384066D; Mon, 30 Sep 2024 19:50:59 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.12]) by mails.dpdk.org (Postfix) with ESMTP id 8DDBD4065A for ; Mon, 30 Sep 2024 19:50:52 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1727718653; x=1759254653; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=jbY8jQtM5kr7SCD0OcoJ05lGNLE1QLeOaeCUaVyl39o=; b=EY/kWOo9FIf9mPriYWec9qDUbvzsbLoBjoRn2fDaXoqzEKRiKNcbVYVO 9HcgefOjhew2bP+SANyCdFNTaQK4YNtjGjmS9VFLyw8nqM5ymr2xseLvZ qh4H/zrNajYE18IuL40H63kYO3Rt08CmGp4Ifs27MLpIlN56eV2+Kvt21 BSZPAJG64e4Pq9AJxAHmr4H+DqGIKRQAdZDWKQhj6t20UCEM83pH+d/eE yEXPeM9tW1OVNF20NAZBVtEsZfa7iLmWDwgfeINIdQ7Sd9pZU7g/KP9Sq 8qldQMAJ+pMKydPMH3pUaZjn6nmV41nLk9btTD0UCnUiNLUih0DpVE/AP w==; X-CSE-ConnectionGUID: hH79jEyeSbWBUJjM2ciiBw== X-CSE-MsgGUID: 5OMUFbAvRD2ty3jM1Mx5lg== X-IronPort-AV: E=McAfee;i="6700,10204,11211"; a="30712534" X-IronPort-AV: E=Sophos;i="6.11,166,1725346800"; d="scan'208";a="30712534" Received: from fmviesa003.fm.intel.com ([10.60.135.143]) by fmvoesa106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 Sep 2024 10:50:52 -0700 X-CSE-ConnectionGUID: FrkmuoKHTgSKALM5LKYICg== X-CSE-MsgGUID: GHyxI3AlRj6e5vL0mZIIVA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.11,166,1725346800"; d="scan'208";a="77457773" Received: from unknown (HELO silpixa00401385.ir.intel.com) ([10.237.214.25]) by fmviesa003.fm.intel.com with ESMTP; 30 Sep 2024 10:50:51 -0700 From: Bruce Richardson To: dev@dpdk.org Cc: Bruce Richardson Subject: [PATCH v1 7/8] net/ice: use global AVX-512 variables Date: Mon, 30 Sep 2024 18:50:31 +0100 Message-ID: <20240930175033.2283861-8-bruce.richardson@intel.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240930175033.2283861-1-bruce.richardson@intel.com> References: <20240930175033.2283861-1-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Replace per-driver checks for AVX-512 with the standard variables from config/x86. Signed-off-by: Bruce Richardson --- drivers/net/ice/meson.build | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/drivers/net/ice/meson.build b/drivers/net/ice/meson.build index b7f2188e62..1c9dc0cc6d 100644 --- a/drivers/net/ice/meson.build +++ b/drivers/net/ice/meson.build @@ -35,20 +35,9 @@ if arch_subdir == 'x86' c_args: [cflags, '-mavx2']) objs += ice_avx2_lib.extract_objects('ice_rxtx_vec_avx2.c') - ice_avx512_cpu_support = ( - cc.get_define('__AVX512F__', args: machine_args) != '' and - cc.get_define('__AVX512BW__', args: machine_args) != '' - ) - - ice_avx512_cc_support = ( - not machine_args.contains('-mno-avx512f') and - cc.has_argument('-mavx512f') and - cc.has_argument('-mavx512bw') - ) - - if ice_avx512_cpu_support == true or ice_avx512_cc_support == true + if cc_has_avx512 cflags += ['-DCC_AVX512_SUPPORT'] - avx512_args = [cflags, '-mavx512f', '-mavx512bw'] + avx512_args = cflags + cc_avx512_flags if cc.has_argument('-march=skylake-avx512') avx512_args += '-march=skylake-avx512' endif -- 2.43.0