All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Update Answer to Quick Quiz 5.27
@ 2017-05-09  8:48 Junchang Wang
  2017-05-09 14:56 ` Akira Yokosawa
  0 siblings, 1 reply; 7+ messages in thread
From: Junchang Wang @ 2017-05-09  8:48 UTC (permalink / raw)
  To: perfbook; +Cc: Junchang Wang

Oops. Forgot the summary in previous email. Resend the patch.


The Answer to Quick Quiz 5.27 is a bit hard to follow. Rewrite it.

Signed-off-by: Junchang Wang <junchangwang@gmail.com>
---
 count/count.tex | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/count/count.tex b/count/count.tex
index cc47554..6dfc7a6 100644
--- a/count/count.tex
+++ b/count/count.tex
@@ -1258,13 +1258,13 @@ machine.
 	fast and scalable while allowing readers to also enjoy
 	reasonable performance and scalability?
 \QuickQuizAnswer{
-	One approach would be to maintain a global approximation
-	to the value.
-	Readers would increment their per-thread variable, but when it
-	reached some predefined limit, atomically add it to a global
-	variable, then zero their per-thread variable.
-	This would permit a tradeoff between average increment overhead
-	and accuracy of the value read out.
+	One approach would be to add a global variable maintaining a
+	approximation to the exact value. An updater would increment its
+	per-thread variable, and when its value reaches predefined limit,
+	atomically add the value to the global variable, then zero its
+	per-thread variable. Readers simply return the value of global variable,
+	enjoying reasonable performance.  This would permit a tradeoff between
+	average increment overhead and accuracy of the value read out.

 	The reader is encouraged to think up and try out other approaches,
 	for example, using a combining tree.
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2017-05-11  3:15 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-09  8:48 [PATCH] Update Answer to Quick Quiz 5.27 Junchang Wang
2017-05-09 14:56 ` Akira Yokosawa
2017-05-09 15:21   ` Junchang Wang
2017-05-09 22:38     ` Akira Yokosawa
2017-05-09 23:05       ` Junchang Wang
2017-05-11  0:47         ` [PATCH] count: Fix typo in " Akira Yokosawa
2017-05-11  3:15           ` Paul E. McKenney

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.