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 B4C6845A6C; Mon, 30 Sep 2024 19:51:31 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D03E340678; Mon, 30 Sep 2024 19:51:00 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.12]) by mails.dpdk.org (Postfix) with ESMTP id 386BC4065A for ; Mon, 30 Sep 2024 19:50:53 +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=Lst06Y65vzNeyqtaSv3LNJfEQUyuATN1vY9ZqmD/D6U=; b=LQaNnaYYSrBkaN1pg1LHtWI6k2guUPpoHYKS5IO8s7yc8Ztn3QC8BlpM 96ICkFMwUE39LnHeT67zs1VHPWSIggrmNaUFdjT7cGIc2oh2E4B9gJN6L iCT41uBjjJ9i2+8eoHqnoA6TCgxCXeOZ+BDOS934k6mRPB+yapbdO36Eu G21nD1aSn+PpxKwBgYe7sa/2BCIJco+rMWyjnSCybiXyBHOUlfwHGeCM+ Fg4LAfK2j8vgDgIbJHOQMivvmfLS/hEU8mWv+o02SRP3rqlmAchETYowO co1B35AfT5Zgw/7r/HbXs5GHudP2BAz3uDEekCjquKOnsZKp9NbfLmJj8 A==; X-CSE-ConnectionGUID: BnOPPDokRnepRGfWYoC17A== X-CSE-MsgGUID: +h9EdO0+QemtZTWCl7ScCQ== X-IronPort-AV: E=McAfee;i="6700,10204,11211"; a="30712536" X-IronPort-AV: E=Sophos;i="6.11,166,1725346800"; d="scan'208";a="30712536" 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:53 -0700 X-CSE-ConnectionGUID: odMJWjqwT2yjmKHl1z3BDw== X-CSE-MsgGUID: KtbJ28lHSD+pFnOY6wwreA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.11,166,1725346800"; d="scan'208";a="77457777" Received: from unknown (HELO silpixa00401385.ir.intel.com) ([10.237.214.25]) by fmviesa003.fm.intel.com with ESMTP; 30 Sep 2024 10:50:52 -0700 From: Bruce Richardson To: dev@dpdk.org Cc: Bruce Richardson , Jingjing Wu Subject: [PATCH v1 8/8] net/idpf: use global AVX-512 variables Date: Mon, 30 Sep 2024 18:50:32 +0100 Message-ID: <20240930175033.2283861-9-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/idpf/meson.build | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/drivers/net/idpf/meson.build b/drivers/net/idpf/meson.build index cf49ef167d..34cbdc4da0 100644 --- a/drivers/net/idpf/meson.build +++ b/drivers/net/idpf/meson.build @@ -14,21 +14,6 @@ sources = files( 'idpf_rxtx.c', ) -if arch_subdir == 'x86' - idpf_avx512_cpu_support = ( - cc.get_define('__AVX512F__', args: machine_args) != '' and - cc.get_define('__AVX512BW__', args: machine_args) != '' and - cc.get_define('__AVX512DQ__', args: machine_args) != '' - ) - - idpf_avx512_cc_support = ( - not machine_args.contains('-mno-avx512f') and - cc.has_argument('-mavx512f') and - cc.has_argument('-mavx512bw') and - cc.has_argument('-mavx512dq') - ) - - if idpf_avx512_cpu_support == true or idpf_avx512_cc_support == true - cflags += ['-DCC_AVX512_SUPPORT'] - endif +if arch_subdir == 'x86'and cc_has_avx512 + cflags += ['-DCC_AVX512_SUPPORT'] endif -- 2.43.0