mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Michael Wang <wangyun@linux.vnet.ibm.com>
To: Mike Galbraith <bitbucket@online.de>
Cc: linux-kernel@vger.kernel.org, mingo@redhat.com,
	peterz@infradead.org, mingo@kernel.org, a.p.zijlstra@chello.nl
Subject: Re: [RFC PATCH 0/2] sched: simplify the select_task_rq_fair()
Date: Tue, 15 Jan 2013 10:46:55 +0800	[thread overview]
Message-ID: <50F4C31F.9030503@linux.vnet.ibm.com> (raw)
In-Reply-To: <1357977704.6796.47.camel@marge.simpson.net>

On 01/12/2013 04:01 PM, Mike Galbraith wrote:
> On Wed, 2013-01-09 at 17:28 +0800, Michael Wang wrote: 
>> On 12/27/2012 02:08 PM, Michael Wang wrote:
>>> This patch set is trying to simplify the select_task_rq_fair() with
>>> schedule balance map.
>>>
>>> After get rid of the complex code and reorganize the logical, pgbench show
>>> the improvement.
>>>
>>> 	Prev:
>>> 		| db_size | clients |  tps  |
>>> 		+---------+---------+-------+
>>> 		| 22 MB   |       1 |  4437 |
>>> 		| 22 MB   |      16 | 51351 |
>>> 		| 22 MB   |      32 | 49959 |
>>> 		| 7484 MB |       1 |  4078 |
>>> 		| 7484 MB |      16 | 44681 |
>>> 		| 7484 MB |      32 | 42463 |
>>> 		| 15 GB   |       1 |  3992 |
>>> 		| 15 GB   |      16 | 44107 |
>>> 		| 15 GB   |      32 | 41797 |
>>>
>>> 	Post:
>>> 		| db_size | clients |  tps  |
>>> 		+---------+---------+-------+
>>> 		| 22 MB   |       1 | 11053 |		+149.11%
>>> 		| 22 MB   |      16 | 55671 |		+8.41%
>>> 		| 22 MB   |      32 | 52596 |		+5.28%
>>> 		| 7483 MB |       1 |  8180 |		+100.59%
>>> 		| 7483 MB |      16 | 48392 |		+8.31%
>>> 		| 7483 MB |      32 | 44185 |		+0.18%
>>> 		| 15 GB   |       1 |  8127 |		+103.58%
>>> 		| 15 GB   |      16 | 48156 |		+9.18%
>>> 		| 15 GB   |      32 | 43387 |		+3.8%
>>>
>>> Please check the patch for more details about schedule balance map, they
>>> currently based on linux-next 3.7.0-rc6, will rebase them to tip tree in
>>> follow version.
>>>
>>> Comments are very welcomed.
>>
>> Could I get some comments for this patch set?
> 
> I kinda like it.  It doesn't bounce buddies all over a large package at
> low load, doesn't have a tbench dip at clients=cores with HT enabled
> that my idle buddy patch does, and your pgbench numbers look very nice.
> It's not as good at ramp as idle buddies, but is an improvement over
> mainline for both tbench and pgbench.  Cool.
> 
> It'll schedule client/server cross node sometimes with you preferring to
> leave wakee near prev_cpu, but that's one of those things that can bite
> whichever choice you make.  It kills the bounce problem, can't hurt
> little boxen, and may help big boxen more often than it hurts, who
> knows.
> 
> Some tbench numbers:
> 
> I had to plug it into 3.0 to play with it, the 3.6-stable kernel I had
> been using on 4x10 core box is misbehaving.

Hi, Mike

Thanks for your reply and test results.

> 
> mainline = upstream select_idle_sibling()
> idle_buddy = upstream select_idle_sibling() with 37407ea7 reverted
> 
> clients                    1          5         10        20         40         80        160
> 3.0.57-mainline        30.76     146.29    1569.48   4396.10    7851.87   14065.90   14128.40
> 3.0.57-idle_buddy     291.69    1448.13    2874.62   5329.49    7311.44   13582.20   13927.50
> 3.0.57-mainline+wang  292.41    1085.70    2048.62   4342.16    8280.17   13494.60   13435.50
> 
> It'd be nice to see more numbers, likely there will be plus/minus all
> the map, but from my quick test drive, generic behavior looks healthier.

It's good to know that you like the idea, I will re-base the code on
latest tip tree and do more test on it.

Regards,
Michael Wang

> 
> -Mike
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/
> 


  parent reply	other threads:[~2013-01-15  2:47 UTC|newest]

Thread overview: 57+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <1356588535-23251-1-git-send-email-wangyun@linux.vnet.ibm.com>
2013-01-09  9:28 ` Michael Wang
2013-01-12  8:01   ` Mike Galbraith
2013-01-12 10:19     ` Mike Galbraith
2013-01-14  9:21       ` Mike Galbraith
2013-01-15  3:10         ` Michael Wang
2013-01-15  4:52           ` Mike Galbraith
2013-01-15  8:26             ` Michael Wang
2013-01-17  5:55         ` Michael Wang
2013-01-20  4:09           ` Mike Galbraith
2013-01-21  2:50             ` Michael Wang
2013-01-21  4:38               ` Mike Galbraith
2013-01-21  5:07                 ` Michael Wang
2013-01-21  6:42                   ` Mike Galbraith
2013-01-21  7:09                     ` Mike Galbraith
2013-01-21  7:45                       ` Michael Wang
2013-01-21  9:09                         ` Mike Galbraith
2013-01-21  9:22                           ` Michael Wang
2013-01-21  9:44                             ` Mike Galbraith
2013-01-21 10:30                               ` Mike Galbraith
2013-01-22  3:43                               ` Michael Wang
2013-01-22  8:03                                 ` Mike Galbraith
2013-01-22  8:56                                   ` Michael Wang
2013-01-22 11:34                                     ` Mike Galbraith
2013-01-23  3:01                                       ` Michael Wang
2013-01-23  5:02                                         ` Mike Galbraith
2013-01-22 14:41                                     ` Mike Galbraith
2013-01-23  2:44                                       ` Michael Wang
2013-01-23  4:31                                         ` Mike Galbraith
2013-01-23  5:09                                           ` Michael Wang
2013-01-23  6:28                                             ` Mike Galbraith
2013-01-23  7:10                                               ` Michael Wang
2013-01-23  8:20                                                 ` Mike Galbraith
2013-01-23  8:30                                                   ` Michael Wang
2013-01-23  8:49                                                     ` Mike Galbraith
2013-01-23  9:00                                                       ` Michael Wang
2013-01-23  9:18                                                         ` Mike Galbraith
2013-01-23  9:26                                                           ` Michael Wang
2013-01-23  9:37                                                             ` Mike Galbraith
2013-01-23  9:32                                                           ` Mike Galbraith
2013-01-24  6:01                                                             ` Michael Wang
2013-01-24  6:51                                                               ` Mike Galbraith
2013-01-24  7:15                                                                 ` Michael Wang
2013-01-24  7:47                                                                   ` Mike Galbraith
2013-01-24  8:14                                                                     ` Michael Wang
2013-01-24  9:07                                                                       ` Mike Galbraith
2013-01-24  9:26                                                                         ` Michael Wang
2013-01-24 10:34                                                                           ` Mike Galbraith
2013-01-25  2:14                                                                             ` Michael Wang
2013-01-24  7:00                                                               ` Michael Wang
2013-01-21  7:34                     ` Michael Wang
2013-01-21  8:26                       ` Mike Galbraith
2013-01-21  8:46                         ` Michael Wang
2013-01-21  9:11                           ` Mike Galbraith
2013-01-15  2:46     ` Michael Wang [this message]
2013-01-11  8:15 Michael Wang
2013-01-11 10:13 ` Nikunj A Dadhania
2013-01-15  2:20   ` Michael Wang

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=50F4C31F.9030503@linux.vnet.ibm.com \
    --to=wangyun@linux.vnet.ibm.com \
    --cc=a.p.zijlstra@chello.nl \
    --cc=bitbucket@online.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@kernel.org \
    --cc=mingo@redhat.com \
    --cc=peterz@infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome