DPDK patches and discussions
 help / color / mirror / Atom feed
* Re: [dpdk-dev] [PATCH] mk: Detect AVX2 capability based on the target CPU architecture
       [not found] <20180721145342.6503-1-cychong@gmail.com>
@ 2018-07-22  9:19 ` Ananyev, Konstantin
  0 siblings, 0 replies; only message in thread
From: Ananyev, Konstantin @ 2018-07-22  9:19 UTC (permalink / raw)
  To: Chaeyong Chong; +Cc: dev, Chaeyong Chong, stable



> -----Original Message-----
> From: Chaeyong Chong [mailto:cychong@gmail.com]
> Sent: Saturday, July 21, 2018 3:54 PM
> To: Ananyev, Konstantin <konstantin.ananyev@intel.com>
> Cc: dev@dpdk.org; Chaeyong Chong <cychong@samsung.com>; stable@dpdk.org
> Subject: [PATCH] mk: Detect AVX2 capability based on the target CPU architecture
> 
> From: Chaeyong Chong <cychong@samsung.com>
> 
> AVX2 support check should be based on the target CPU architecure.
> For this, -march option should be $(RTE_MACHINE) instead of core-avx2.

I don't really think it should.
The purpose is to build an AVX2 function even for 'default' target.
Then at runtime proper version of the code (SSE/AVX2/etc) could be selected.
So NACK.
Konstantin

> 
> Cc: stable@dpdk.org
> 
> Signed-off-by: Chaeyong Chong <cychong@samsung.com>
> ---
>  lib/librte_acl/Makefile | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/lib/librte_acl/Makefile b/lib/librte_acl/Makefile
> index ea5edf00a..c756eaeb2 100644
> --- a/lib/librte_acl/Makefile
> +++ b/lib/librte_acl/Makefile
> @@ -44,7 +44,7 @@ ifeq ($(findstring RTE_MACHINE_CPUFLAG_AVX2,$(CFLAGS)),RTE_MACHINE_CPUFLAG_AVX2)
>  	CC_AVX2_SUPPORT=1
>  else
>  	CC_AVX2_SUPPORT=\
> -	$(shell $(CC) -march=core-avx2 -dM -E - </dev/null 2>&1 | \
> +	$(shell $(CC) -march=$(RTE_MACHINE) -dM -E - </dev/null 2>&1 | \
>  	grep -q AVX2 && echo 1)
>  	ifeq ($(CC_AVX2_SUPPORT), 1)
>  		ifeq ($(CONFIG_RTE_TOOLCHAIN_ICC),y)
> --
> 2.18.0

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2018-07-22  9:20 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20180721145342.6503-1-cychong@gmail.com>
2018-07-22  9:19 ` [dpdk-dev] [PATCH] mk: Detect AVX2 capability based on the target CPU architecture Ananyev, Konstantin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).