All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
To: Akira Yokosawa <akiyks@gmail.com>
Cc: perfbook@vger.kernel.org
Subject: Re: [PATCH 1/3] whymb: Update table layout
Date: Mon, 23 Oct 2017 11:00:43 -0700	[thread overview]
Message-ID: <20171023180043.GQ3659@linux.vnet.ibm.com> (raw)
In-Reply-To: <96ff162d-2670-3038-f9c8-c6921d4f374c@gmail.com>

On Tue, Oct 24, 2017 at 12:27:59AM +0900, Akira Yokosawa wrote:
> >From 0bec999ee614a8c92d42876957b1072329b62829 Mon Sep 17 00:00:00 2001
> From: Akira Yokosawa <akiyks@gmail.com>
> Date: Mon, 23 Oct 2017 23:13:26 +0900
> Subject: [PATCH 1/3] whymb: Update table layout
> 
> Signed-off-by: Akira Yokosawa <akiyks@gmail.com>

All three look good, queued and pushed, thank you!

							Thanx, Paul

> ---
>  appendix/whymb/whymemorybarriers.tex | 20 ++++++++------------
>  1 file changed, 8 insertions(+), 12 deletions(-)
> 
> diff --git a/appendix/whymb/whymemorybarriers.tex b/appendix/whymb/whymemorybarriers.tex
> index b52c2e5..422948e 100644
> --- a/appendix/whymb/whymemorybarriers.tex
> +++ b/appendix/whymb/whymemorybarriers.tex
> @@ -565,29 +565,25 @@ Finally, CPU~1 reads the cache line at address~8, which uses a
>  \begin{table*}
>  \small
>  \centering
> -\begin{tabular}{r|c|l||c|c|c|c||c|c}
> -	& & & \multicolumn{4}{c||}{CPU Cache} & \multicolumn{2}{c}{Memory} \\
> -	\cline{4-7}
> +\renewcommand*{\arraystretch}{1.2}
> +\rowcolors{6}{}{lightgray}
> +\begin{tabular}{rclcccccc}
> +	\toprule
> +	& & & \multicolumn{4}{c}{CPU Cache} & \multicolumn{2}{c}{Memory} \\
> +	\cmidrule(lr){4-7} \cmidrule(l){8-9}
>  	Sequence \# & CPU \# & Operation & 0 & 1 & 2 & 3 & 0 & 8 \\
> -	\hline
> +	\cmidrule(r){1-3} \cmidrule(lr){4-7} \cmidrule(l){8-9}
>  %	Seq CPU Operation	------------- CPU -------------   - Memory -
>  %				   0	   1	   2	   3	    0   8
> -	\hline
>  	0 &   & Initial State	& $-$/I & $-$/I & $-$/I & $-$/I   & V & V \\
> -	\hline
>  	1 & 0 & Load		& 0/S &   $-$/I & $-$/I & $-$/I   & V & V \\
> -	\hline
>  	2 & 3 & Load		& 0/S &   $-$/I & $-$/I & 0/S     & V & V \\
> -	\hline
>  	3 & 0 & Invalidation	& 8/S &   $-$/I & $-$/I & 0/S     & V & V \\
> -	\hline
>  	4 & 2 & RMW		& 8/S &   $-$/I & 0/E &   $-$/I   & V & V \\
> -	\hline
>  	5 & 2 & Store		& 8/S &   $-$/I & 0/M &   $-$/I   & I & V \\
> -	\hline
>  	6 & 1 & Atomic Inc	& 8/S &   0/M &   $-$/I & $-$/I   & I & V \\
> -	\hline
>  	7 & 1 & Writeback	& 8/S &   8/S &   $-$/I & $-$/I   & V & V \\
> +	\bottomrule
>  \end{tabular}
>  \caption{Cache Coherence Example}
>  \label{tab:app:whymb:Cache Coherence Example}
> -- 
> 2.7.4
> 
> 


      parent reply	other threads:[~2017-10-23 18:00 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-10-22 15:20 [PATCH 0/5] Update table layout Akira Yokosawa
2017-10-22 15:22 ` [PATCH 1/5] Move caption of table to top Akira Yokosawa
2017-10-22 15:24 ` [PATCH 2/5] Define \twocolumnwidth for 1c layout Akira Yokosawa
2017-10-22 15:25 ` [PATCH 3/5] Use \O{} macro for 'order-of' Akira Yokosawa
2017-10-22 15:26 ` [PATCH 4/5] Update tables using booktabs and alternate-row coloring scheme Akira Yokosawa
2017-10-22 15:28 ` [PATCH 5/5] datastruct: Convert 'NUMA Topology of System Under Test' to figure Akira Yokosawa
2017-10-23  2:24 ` [PATCH 0/5] Update table layout Paul E. McKenney
2017-10-23 15:25   ` Akira Yokosawa
2017-10-23 17:49     ` Paul E. McKenney
2017-10-24 13:50       ` Akira Yokosawa
2017-10-25 19:19         ` Paul E. McKenney
2017-10-23 15:27   ` [PATCH 1/3] whymb: " Akira Yokosawa
2017-10-23 15:29     ` [PATCH 2/3] defer/rcuapi: " Akira Yokosawa
2017-10-23 15:30     ` [PATCH 3/3] Convert table of code fragments to 'listing' Akira Yokosawa
2017-10-23 18:00     ` Paul E. McKenney [this message]

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=20171023180043.GQ3659@linux.vnet.ibm.com \
    --to=paulmck@linux.vnet.ibm.com \
    --cc=akiyks@gmail.com \
    --cc=perfbook@vger.kernel.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.