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 32A24A034C; Tue, 10 May 2022 04:57:40 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 21AD0415D7; Tue, 10 May 2022 04:57:40 +0200 (CEST) Received: from szxga01-in.huawei.com (szxga01-in.huawei.com [45.249.212.187]) by mails.dpdk.org (Postfix) with ESMTP id 179C34113D for ; Tue, 10 May 2022 04:57:39 +0200 (CEST) Received: from dggpeml500024.china.huawei.com (unknown [172.30.72.56]) by szxga01-in.huawei.com (SkyGuard) with ESMTP id 4Ky2kt3PGLzhYYX; Tue, 10 May 2022 10:57:10 +0800 (CST) Received: from [127.0.0.1] (10.67.100.224) by dggpeml500024.china.huawei.com (7.185.36.10) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.24; Tue, 10 May 2022 10:57:37 +0800 Subject: Re: [PATCH v4 2/2] config/arm: disable SVE ACLE for cn10k To: Rahul Bhansali , , Jan Viktorin , Ruifeng Wang , Bruce Richardson CC: References: <20220505142744.1423344-1-rbhansali@marvell.com> <20220509101932.2403562-1-rbhansali@marvell.com> <20220509101932.2403562-2-rbhansali@marvell.com> From: fengchengwen Message-ID: <9423a6e9-9912-062b-82a5-ef4204ea7755@huawei.com> Date: Tue, 10 May 2022 10:57:37 +0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Thunderbird/68.11.0 MIME-Version: 1.0 In-Reply-To: <20220509101932.2403562-2-rbhansali@marvell.com> Content-Type: text/plain; charset="utf-8" Content-Language: en-US Content-Transfer-Encoding: 7bit X-Originating-IP: [10.67.100.224] X-ClientProxiedBy: dggems701-chm.china.huawei.com (10.3.19.178) To dggpeml500024.china.huawei.com (7.185.36.10) X-CFilter-Loop: Reflected 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 Reviewed-by: Chengwen Feng On 2022/5/9 18:19, Rahul Bhansali wrote: > This disable the sve_acle flag for cn10k. > > Performance impact:- > With l3fwd example, lpm lookup performance increased > by ~21% if Neon is used instead of SVE. > > Signed-off-by: Rahul Bhansali > --- > Changes in v4: > - Resend patches. With v3, patches were not sent properly > in single series. > > Changes in v3: No change > > Changes in v2: > - Renamed the flag to sve_acle from sve > > config/arm/meson.build | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/config/arm/meson.build b/config/arm/meson.build > index 6f8961eac8..a94129168f 100644 > --- a/config/arm/meson.build > +++ b/config/arm/meson.build > @@ -281,7 +281,8 @@ soc_cn10k = { > ], > 'part_number': '0xd49', > 'extra_march_features': ['crypto'], > - 'numa': false > + 'numa': false, > + 'sve_acle': false > } > > soc_dpaa = { > -- > 2.25.1 > > > . >