Re: [dpdk-dev] [PATCH] mk: parallelize make config

2017-01-30 Thread Ferruh Yigit
On 1/29/2017 3:29 PM, Thomas Monjalon wrote: > 2017-01-22 01:50, Ferruh Yigit: >> make config dependency resolving was always running serial, >> parallelize it for better performance. > > It could be interesting to explain why it was not parallelized, > and how you made it possible. I will try to

Re: [dpdk-dev] [PATCH] mk: parallelize make config

2017-01-30 Thread Ferruh Yigit
On 1/23/2017 7:03 PM, Michał Mirosław wrote: > 2017-01-22 2:50 GMT+01:00 Ferruh Yigit : >> make config dependency resolving was always running serial, >> parallelize it for better performance. >> >> $ time make T=x86_64-native-linuxapp-gcc config >> real0m12.633s >> >> $ time make -j8 T=x86_64-

Re: [dpdk-dev] [PATCH] mk: parallelize make config

2017-01-29 Thread Thomas Monjalon
2017-01-22 01:50, Ferruh Yigit: > make config dependency resolving was always running serial, > parallelize it for better performance. It could be interesting to explain why it was not parallelized, and how you made it possible. The test script should be updated as below: --- a/devtools/test-bui

Re: [dpdk-dev] [PATCH] mk: parallelize make config

2017-01-24 Thread Bruce Richardson
On Sun, Jan 22, 2017 at 01:50:34AM +, Ferruh Yigit wrote: > make config dependency resolving was always running serial, > parallelize it for better performance. > > $ time make T=x86_64-native-linuxapp-gcc config > real0m12.633s > > $ time make -j8 T=x86_64-native-linuxapp-gcc config > re

Re: [dpdk-dev] [PATCH] mk: parallelize make config

2017-01-24 Thread Bruce Richardson
On Tue, Jan 24, 2017 at 09:42:35AM +0100, Olivier MATZ wrote: > Hi Keith, > > On Mon, 23 Jan 2017 17:50:27 +, "Wiles, Keith" > wrote: > > > On Jan 23, 2017, at 10:18 AM, Olivier Matz > > > wrote: > > > > > > Hi Ferruh, > > > > > > On Sun, 22 Jan 2017 01:50:34 +, Ferruh Yigit > > > wro

Re: [dpdk-dev] [PATCH] mk: parallelize make config

2017-01-24 Thread Olivier MATZ
Hi Keith, On Mon, 23 Jan 2017 17:50:27 +, "Wiles, Keith" wrote: > > On Jan 23, 2017, at 10:18 AM, Olivier Matz > > wrote: > > > > Hi Ferruh, > > > > On Sun, 22 Jan 2017 01:50:34 +, Ferruh Yigit > > wrote: > >> make config dependency resolving was always running serial, > >> parallel

Re: [dpdk-dev] [PATCH] mk: parallelize make config

2017-01-23 Thread Michał Mirosław
2017-01-22 2:50 GMT+01:00 Ferruh Yigit : > make config dependency resolving was always running serial, > parallelize it for better performance. > > $ time make T=x86_64-native-linuxapp-gcc config > real0m12.633s > > $ time make -j8 T=x86_64-native-linuxapp-gcc config > real0m1.826s [...] >

Re: [dpdk-dev] [PATCH] mk: parallelize make config

2017-01-23 Thread Wiles, Keith
> On Jan 23, 2017, at 10:18 AM, Olivier Matz wrote: > > Hi Ferruh, > > On Sun, 22 Jan 2017 01:50:34 +, Ferruh Yigit > wrote: >> make config dependency resolving was always running serial, >> parallelize it for better performance. >> >> $ time make T=x86_64-native-linuxapp-gcc config >> re

Re: [dpdk-dev] [PATCH] mk: parallelize make config

2017-01-23 Thread Olivier Matz
Hi Ferruh, On Sun, 22 Jan 2017 01:50:34 +, Ferruh Yigit wrote: > make config dependency resolving was always running serial, > parallelize it for better performance. > > $ time make T=x86_64-native-linuxapp-gcc config > real0m12.633s > > $ time make -j8 T=x86_64-native-linuxapp-gcc conf