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 4F29445A7B; Tue, 1 Oct 2024 13:19:05 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 2A7504067A; Tue, 1 Oct 2024 13:18:22 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.14]) by mails.dpdk.org (Postfix) with ESMTP id 5FD49402BB for ; Tue, 1 Oct 2024 13:18:18 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1727781498; x=1759317498; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=Lst06Y65vzNeyqtaSv3LNJfEQUyuATN1vY9ZqmD/D6U=; b=TifkmjUz/gEpNtgABvD0c0Gv0zCp8Wu2hEHCofSn75hcXuGr06C5tuuQ ZsAlINvP9lfvuHhYSl1vMK7FDL9Lb0wmDsLwX66pj2ZUpOeocy0Bt5E2V sn8xa6MclwLDDnFfbUyQYoVVVcdmchmrI4QKIT7xswp/4ZW4MhA1K2/X9 1Wh1yvx/f0OF6JH+SkOVdIghWESVyLCv81uAhF/fs7pr77IH+Poj0zweo ncEDYvEw5Obi8YeG8G+yoQpDpQlj7M5h9P3LtT6bFhhiGt9YXJUGJ9rMc TQCOlhyX3brzKcFVPgxu29YlpSxuzvHKxWUmrQceEx/9ZpN1M+L7UwBCa A==; X-CSE-ConnectionGUID: tFlh+2dVR9GMbCqkq6uK7A== X-CSE-MsgGUID: BUiybmXqS8OCvLkZ6zJJgw== X-IronPort-AV: E=McAfee;i="6700,10204,11211"; a="27084550" X-IronPort-AV: E=Sophos;i="6.11,167,1725346800"; d="scan'208";a="27084550" Received: from orviesa007.jf.intel.com ([10.64.159.147]) by fmvoesa108.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Oct 2024 04:18:18 -0700 X-CSE-ConnectionGUID: Fp3tt69ERr6QiIFDrwS8nw== X-CSE-MsgGUID: nsTn6pqsS86q2uzYys818w== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.11,167,1725346800"; d="scan'208";a="74047110" Received: from unknown (HELO silpixa00401385.ir.intel.com) ([10.237.214.25]) by orviesa007.jf.intel.com with ESMTP; 01 Oct 2024 04:18:17 -0700 From: Bruce Richardson To: dev@dpdk.org Cc: Bruce Richardson , Jingjing Wu Subject: [PATCH v2 8/8] net/idpf: use global AVX-512 variables Date: Tue, 1 Oct 2024 12:18:01 +0100 Message-ID: <20241001111802.2728765-9-bruce.richardson@intel.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20241001111802.2728765-1-bruce.richardson@intel.com> References: <20240930175033.2283861-1-bruce.richardson@intel.com> <20241001111802.2728765-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