All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH -perfbook 1/3] treewide: Fix choice of \cref{}/\Cref{} macros
@ 2021-02-20 15:12 Akira Yokosawa
  2021-02-20 15:16 ` [PATCH -perfbook 2/3] datastruct: Fix typo Akira Yokosawa
  2021-02-20 15:20 ` [PATCH -perfbook 3/3] datastruct: Shorten X label of cat-only lookup performance plot Akira Yokosawa
  0 siblings, 2 replies; 6+ messages in thread
From: Akira Yokosawa @ 2021-02-20 15:12 UTC (permalink / raw)
  To: Paul E. McKenney; +Cc: perfbook, Akira Yokosawa

Also use some more such macros in the neighborhood.

Signed-off-by: Akira Yokosawa <akiyks@gmail.com>
---
 count/count.tex           | 11 +++++------
 datastruct/datastruct.tex | 12 ++++++------
 debugging/debugging.tex   |  2 +-
 defer/defer.tex           | 12 ++++++------
 defer/rcu.tex             |  2 +-
 owned/owned.tex           |  4 ++--
 together/together.tex     |  2 +-
 7 files changed, 22 insertions(+), 23 deletions(-)

diff --git a/count/count.tex b/count/count.tex
index cfb1cd10..e4d9de1a 100644
--- a/count/count.tex
+++ b/count/count.tex
@@ -139,15 +139,14 @@ counting.
 
 \QuickQuizLabel{\QcountQIOcnt}
 
-Section~\ref{sec:count:Why Isn't Concurrent Counting Trivial?}
+\Cref{sec:count:Why Isn't Concurrent Counting Trivial?}
 shows why counting is non-trivial.
-\cref{sec:count:Statistical Counters} and
-\cref{sec:count:Approximate Limit Counters}
+\Cref{sec:count:Statistical Counters,sec:count:Approximate Limit Counters}
 investigate network-packet counting and approximate structure-allocation
 limits, respectively.
-Section~\ref{sec:count:Exact Limit Counters}
+\Cref{sec:count:Exact Limit Counters}
 takes on exact structure-allocation limits.
-Finally, Section~\ref{sec:count:Parallel Counting Discussion}
+Finally, \cref{sec:count:Parallel Counting Discussion}
 presents performance measurements and discussion.
 
 \Cref{sec:count:Why Isn't Concurrent Counting Trivial?,%
@@ -3184,7 +3183,7 @@ Summarizing the summary:
 \item	Different levels of performance and scalability will affect
 	algorithm and data-structure design, as do a large number of
 	other factors.
-	Figure~\ref{fig:count:Atomic Increment Scalability on x86}
+	\Cref{fig:count:Atomic Increment Scalability on x86}
 	illustrates this point:  Atomic increment might be completely
 	acceptable for a two-CPU system, but be completely inadequate for an
 	eight-CPU system.
diff --git a/datastruct/datastruct.tex b/datastruct/datastruct.tex
index 3ec155d9..52ff3c35 100644
--- a/datastruct/datastruct.tex
+++ b/datastruct/datastruct.tex
@@ -12,21 +12,21 @@ Serious discussions of algorithms include time complexity of their
 data structures~\cite{ThomasHCorman2001Algorithms}.
 However, for parallel programs, the time complexity includes concurrency
 effects because these effects can be overwhelmingly large, as shown in
-Chapter~\ref{chp:Hardware and its Habits}.
+\cref{chp:Hardware and its Habits}.
 In other words, a good programmer's data-structure relationships
 include those aspects related to concurrency.
 
-Section~\ref{sec:datastruct:Motivating Application}
+\Cref{sec:datastruct:Motivating Application}
 presents the motivating application for this chapter's data structures.
-\cref{cha:Partitioning and Synchronization Design} showed how
+\Cref{cha:Partitioning and Synchronization Design} showed how
 partitioning improves scalability, so
 \cref{sec:datastruct:Partitionable Data Structures}
 discusses partitionable data structures.
-\cref{chp:Deferred Processing} described how deferring some
+\Cref{chp:Deferred Processing} described how deferring some
 actions can greatly improve both performance and scalability,
 a topic taken up by
 \cref{sec:datastruct:Read-Mostly Data Structures}.
-\cref{sec:datastruct:Non-Partitionable Data Structures}
+\Cref{sec:datastruct:Non-Partitionable Data Structures}
 looks at a non-partitionable data structure, splitting
 it into read-mostly and partitionable portions,
 which improves both performance and scalability.
@@ -755,7 +755,7 @@ to about half again faster than that of either QSBR or RCU.
 }\QuickQuizEnd
 
 What if the memory footprint is reduced still further?
-\cref{fig:defer:Pre-BSD Routing Table Protected by RCU QSBR}
+\Cref{fig:defer:Pre-BSD Routing Table Protected by RCU QSBR}
 on page~\pageref{fig:defer:Pre-BSD Routing Table Protected by RCU QSBR With Non-Initial rcu-head}
 shows that RCU attains very nearly ideal performance on the much smaller
 data structure represented by the pre-BSD routing table.
diff --git a/debugging/debugging.tex b/debugging/debugging.tex
index 045e4428..9518633c 100644
--- a/debugging/debugging.tex
+++ b/debugging/debugging.tex
@@ -804,7 +804,7 @@ Although it is likely that compilers will continue to increase their
 static-analysis capabilities, the sparse static analyzer demonstrates
 the benefits of static analysis outside of the compiler, particularly
 for finding application-specific bugs.
-\crefrange{sec:formal:SAT Solvers}{sec:formal:Stateless Model Checkers}
+\Crefrange{sec:formal:SAT Solvers}{sec:formal:Stateless Model Checkers}
 describe more sophisticated forms of static analysis.
 
 \section{Code Review}
diff --git a/defer/defer.tex b/defer/defer.tex
index 020e9680..84bb1bd6 100644
--- a/defer/defer.tex
+++ b/defer/defer.tex
@@ -17,13 +17,13 @@ These performance and scalability benefits stem from the fact that
 deferring work can enable weakening of synchronization primitives,
 thereby reducing synchronization overhead.
 General approaches of work deferral include
-reference counting (Section~\ref{sec:defer:Reference Counting}),
-hazard pointers (Section~\ref{sec:defer:Hazard Pointers}),
-sequence locking (Section~\ref{sec:defer:Sequence Locks}),
-and RCU (Section~\ref{sec:defer:Read-Copy Update (RCU)}).
-Finally, Section~\ref{sec:defer:Which to Choose?}
+reference counting (\cref{sec:defer:Reference Counting}),
+hazard pointers (\cref{sec:defer:Hazard Pointers}),
+sequence locking (\cref{sec:defer:Sequence Locks}),
+and RCU (\cref{sec:defer:Read-Copy Update (RCU)}).
+Finally, \cref{sec:defer:Which to Choose?}
 describes how to choose among the work-deferral schemes covered in
-this chapter and Section~\ref{sec:defer:What About Updates?}
+this chapter and \cref{sec:defer:What About Updates?}
 discusses updates.
 But first, \cref{sec:defer:Running Example} will introduce an example
 algorithm that will be used to compare and contrast these approaches.
diff --git a/defer/rcu.tex b/defer/rcu.tex
index 774563b6..4b63e470 100644
--- a/defer/rcu.tex
+++ b/defer/rcu.tex
@@ -40,7 +40,7 @@ an API that allows readers to be associated with regions in the source code,
 rather than with expensive updates to frequently updated shared data.
 The remainder of this
 section examines RCU from a number of different perspectives.
-\cref{sec:defer:Introduction to RCU} provides the classic
+\Cref{sec:defer:Introduction to RCU} provides the classic
 introduction to RCU,
 \cref{sec:defer:RCU Fundamentals} covers fundamental RCU
 concepts,
diff --git a/owned/owned.tex b/owned/owned.tex
index 4db0e66f..4eaf7d48 100644
--- a/owned/owned.tex
+++ b/owned/owned.tex
@@ -375,8 +375,8 @@ from \co{read_count()}.
 Partial privatization is also possible, with some synchronization
 requirements, but less than in the fully shared case.
 Some partial-privatization possibilities were explored in
-Section~\ref{sec:toolsoftrade:Avoiding Data Races}.
-\cref{chp:Deferred Processing} will introduce a temporal component
+\cref{sec:toolsoftrade:Avoiding Data Races}.
+\Cref{chp:Deferred Processing} will introduce a temporal component
 to data ownership by providing ways of safely taking public data
 structures private.
 
diff --git a/together/together.tex b/together/together.tex
index 7d00ec06..c2ad53d5 100644
--- a/together/together.tex
+++ b/together/together.tex
@@ -13,7 +13,7 @@
 
 This \lcnamecref{chp:Putting It All Together}
 gives some hints on a few concurrent-programming puzzles.
-\cref{sec:together:Counter Conundrums}
+\Cref{sec:together:Counter Conundrums}
 considers some counter conundrums,
 \cref{sec:together:Refurbish Reference Counting}
 refurbishes reference counting,
-- 
2.17.1


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

* [PATCH -perfbook 2/3] datastruct: Fix typo
  2021-02-20 15:12 [PATCH -perfbook 1/3] treewide: Fix choice of \cref{}/\Cref{} macros Akira Yokosawa
@ 2021-02-20 15:16 ` Akira Yokosawa
  2021-02-20 15:20 ` [PATCH -perfbook 3/3] datastruct: Shorten X label of cat-only lookup performance plot Akira Yokosawa
  1 sibling, 0 replies; 6+ messages in thread
From: Akira Yokosawa @ 2021-02-20 15:16 UTC (permalink / raw)
  To: Paul E. McKenney; +Cc: perfbook, Akira Yokosawa

This looks like a staccato. 

Signed-off-by: Akira Yokosawa <akiyks@gmail.com>
---
 datastruct/datastruct.tex | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/datastruct/datastruct.tex b/datastruct/datastruct.tex
index 52ff3c35..00dc3b60 100644
--- a/datastruct/datastruct.tex
+++ b/datastruct/datastruct.tex
@@ -775,7 +775,7 @@ data structure represented by the pre-BSD routing table.
 	sets of queries than performed by the benchmarks in this chapter.
 	For example, such systems might be processing images or video
 	streams stored in each element, providing further performance
-	benefits due to the that that the resulting sequential memory
+	benefits due to the fact that the resulting sequential memory
 	accesses will make better use of the available memory bandwidth
 	than will a pure pointer-following workload.
 
-- 
2.17.1



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

* [PATCH -perfbook 3/3] datastruct: Shorten X label of cat-only lookup performance plot
  2021-02-20 15:12 [PATCH -perfbook 1/3] treewide: Fix choice of \cref{}/\Cref{} macros Akira Yokosawa
  2021-02-20 15:16 ` [PATCH -perfbook 2/3] datastruct: Fix typo Akira Yokosawa
@ 2021-02-20 15:20 ` Akira Yokosawa
  2021-02-21 22:02   ` Paul E. McKenney
  1 sibling, 1 reply; 6+ messages in thread
From: Akira Yokosawa @ 2021-02-20 15:20 UTC (permalink / raw)
  To: Paul E. McKenney; +Cc: perfbook, Akira Yokosawa

Removing "(Threads)" allows these labels to fit the the plot-area.

Plots in the other subdirectories are not touched.

Signed-off-by: Akira Yokosawa <akiyks@gmail.com>
---
 .../hash/data/hps.perf.2020.11.26a/perftest.eps        |  4 ++--
 .../hash/data/hps.perf.2020.11.26a/perftestlin.eps     |  4 ++--
 .../datastruct/hash/data/hps.perf.2020.11.26a/plots.sh | 10 +++++-----
 .../data/hps.perf.2020.11.26a/zoocatall-unsync.eps     |  6 +++---
 .../hash/data/hps.perf.2020.11.26a/zoocatall.eps       |  6 +++---
 .../hash/data/hps.perf.2020.11.26a/zoocatalllin.eps    |  6 +++---
 .../hash/data/hps.perf.2020.11.26a/zoocatonly.eps      |  6 +++---
 .../hash/data/hps.perf.2020.11.26a/zoocatonlylin.eps   |  6 +++---
 .../hash/data/hps.perf.2020.11.26a/zoocpu-unsync.eps   |  4 ++--
 .../data/hps.perf.2020.11.26a/zoocpu-unsynclin.eps     |  4 ++--
 .../hash/data/hps.perf.2020.11.26a/zoocpu.eps          |  4 ++--
 .../hash/data/hps.perf.2020.11.26a/zoocpubktlin.eps    |  4 ++--
 .../hash/data/hps.perf.2020.11.26a/zoocpubktlin8.eps   |  4 ++--
 .../data/hps.perf.2020.11.26a/zoocpubktsizelin.eps     |  4 ++--
 .../hash/data/hps.perf.2020.11.26a/zoocpulin.eps       |  4 ++--
 .../hash/data/hps.perf.2020.11.26a/zoocpulinqsbr.eps   |  4 ++--
 .../data/hps.perf.2020.11.26a/zoocpulinqsbrunsync.eps  |  4 ++--
 .../hash/data/hps.perf.2020.11.26a/zooupdate.eps       |  4 ++--
 .../hash/data/hps.perf.2020.11.26a/zooupdatelu.eps     |  4 ++--
 .../hash/data/hps.perf.2020.11.26a/zooupdatelulin.eps  |  4 ++--
 20 files changed, 48 insertions(+), 48 deletions(-)

diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/perftest.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/perftest.eps
index 89aba0fb..cdec71fa 100644
--- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/perftest.eps
+++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/perftest.eps
@@ -1,7 +1,7 @@
 %!PS-Adobe-2.0
 %%Title: perftest.eps
 %%Creator: gnuplot 5.2 patchlevel 2
-%%CreationDate: Mon Dec 28 16:51:52 2020
+%%CreationDate: Sat Feb 20 18:10:20 2021
 %%DocumentFonts: (atend)
 %%BoundingBox: 50 50 302 410
 %%Orientation: Portrait
@@ -1872,7 +1872,7 @@ SDict begin [
   /Creator (gnuplot 5.2 patchlevel 2)
 %  /Producer (gnuplot)
 %  /Keywords ()
-  /CreationDate (Mon Dec 28 16:51:52 2020)
+  /CreationDate (Sat Feb 20 18:10:20 2021)
   /DOCINFO pdfmark
 end
 } ifelse
diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/perftestlin.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/perftestlin.eps
index 2c4be05e..94f3529a 100644
--- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/perftestlin.eps
+++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/perftestlin.eps
@@ -1,7 +1,7 @@
 %!PS-Adobe-2.0
 %%Title: perftestlin.eps
 %%Creator: gnuplot 5.2 patchlevel 2
-%%CreationDate: Mon Dec 28 16:51:52 2020
+%%CreationDate: Sat Feb 20 18:10:20 2021
 %%DocumentFonts: (atend)
 %%BoundingBox: 50 50 302 410
 %%Orientation: Portrait
@@ -1872,7 +1872,7 @@ SDict begin [
   /Creator (gnuplot 5.2 patchlevel 2)
 %  /Producer (gnuplot)
 %  /Keywords ()
-  /CreationDate (Mon Dec 28 16:51:52 2020)
+  /CreationDate (Sat Feb 20 18:10:20 2021)
   /DOCINFO pdfmark
 end
 } ifelse
diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/plots.sh b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/plots.sh
index 5d6ab75a..11b7d4d3 100644
--- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/plots.sh
+++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/plots.sh
@@ -236,7 +236,7 @@ gnuplot << ---EOF---
 set term postscript portrait ${fontsize} enhanced "NimbusSanL-Regu" fontfile "${font}fonts/uhvr8a.pfb"
 set size square ${plotsize},${plotsize}
 set output "zoocatall.eps"
-set xlabel "Number of CPUs (Threads) Looking Up The Cat"
+set xlabel "Number of CPUs Looking Up The Cat"
 set ylabel "Total Lookups per Millisecond"
 set logscale xy
 #set yrange [1:10000]
@@ -254,7 +254,7 @@ gnuplot << ---EOF---
 set term postscript portrait ${fontsize} enhanced "NimbusSanL-Regu" fontfile "${font}fonts/uhvr8a.pfb"
 set size square ${plotsize},${plotsize}
 set output "zoocatalllin.eps"
-set xlabel "Number of CPUs (Threads) Looking Up The Cat"
+set xlabel "Number of CPUs Looking Up The Cat"
 set ylabel "Total Lookups per Millisecond"
 #set logscale xy
 #set yrange [1:10000]
@@ -272,7 +272,7 @@ gnuplot << ---EOF---
 set term postscript portrait ${fontsize} enhanced "NimbusSanL-Regu" fontfile "${font}fonts/uhvr8a.pfb"
 set size square ${plotsize},${plotsize}
 set output "zoocatall-unsync.eps"
-set xlabel "Number of CPUs (Threads) Looking Up The Cat"
+set xlabel "Number of CPUs Looking Up The Cat"
 set ylabel "Total Lookups per Millisecond"
 set logscale xy
 #set yrange [1:10000]
@@ -291,7 +291,7 @@ gnuplot << ---EOF---
 set term postscript portrait ${fontsize} enhanced "NimbusSanL-Regu" fontfile "${font}fonts/uhvr8a.pfb"
 set size square ${plotsize},${plotsize}
 set output "zoocatonly.eps"
-set xlabel "Number of CPUs (Threads) Looking Up The Cat"
+set xlabel "Number of CPUs Looking Up The Cat"
 set ylabel "Cat Lookups per Millisecond"
 set logscale xy
 #set yrange [1:10000]
@@ -309,7 +309,7 @@ gnuplot << ---EOF---
 set term postscript portrait ${fontsize} enhanced "NimbusSanL-Regu" fontfile "${font}fonts/uhvr8a.pfb"
 set size square ${plotsize},${plotsize}
 set output "zoocatonlylin.eps"
-set xlabel "Number of CPUs (Threads) Looking Up The Cat"
+set xlabel "Number of CPUs Looking Up The Cat"
 set ylabel "Cat Lookups per Millisecond"
 #set logscale xy
 #set yrange [1:10000]
diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatall-unsync.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatall-unsync.eps
index 3de41316..13fe8753 100644
--- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatall-unsync.eps
+++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatall-unsync.eps
@@ -1,7 +1,7 @@
 %!PS-Adobe-2.0
 %%Title: zoocatall-unsync.eps
 %%Creator: gnuplot 5.2 patchlevel 2
-%%CreationDate: Mon Dec 28 16:51:52 2020
+%%CreationDate: Sat Feb 20 18:10:20 2021
 %%DocumentFonts: (atend)
 %%BoundingBox: 50 50 302 410
 %%Orientation: Portrait
@@ -1872,7 +1872,7 @@ SDict begin [
   /Creator (gnuplot 5.2 patchlevel 2)
 %  /Producer (gnuplot)
 %  /Keywords ()
-  /CreationDate (Mon Dec 28 16:51:52 2020)
+  /CreationDate (Sat Feb 20 18:10:20 2021)
   /DOCINFO pdfmark
 end
 } ifelse
@@ -2218,7 +2218,7 @@ grestore
 LTb
 LCb setrgbcolor
 1504 825 M
-[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs \(Threads\) Looking Up The Cat)]
+[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs Looking Up The Cat)]
 ] -33.3 MCshow
 LTb
 % Begin plot #1
diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatall.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatall.eps
index a6295c11..86b97f0a 100644
--- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatall.eps
+++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatall.eps
@@ -1,7 +1,7 @@
 %!PS-Adobe-2.0
 %%Title: zoocatall.eps
 %%Creator: gnuplot 5.2 patchlevel 2
-%%CreationDate: Mon Dec 28 16:51:52 2020
+%%CreationDate: Sat Feb 20 18:10:20 2021
 %%DocumentFonts: (atend)
 %%BoundingBox: 50 50 302 410
 %%Orientation: Portrait
@@ -1872,7 +1872,7 @@ SDict begin [
   /Creator (gnuplot 5.2 patchlevel 2)
 %  /Producer (gnuplot)
 %  /Keywords ()
-  /CreationDate (Mon Dec 28 16:51:52 2020)
+  /CreationDate (Sat Feb 20 18:10:20 2021)
   /DOCINFO pdfmark
 end
 } ifelse
@@ -2214,7 +2214,7 @@ grestore
 LTb
 LCb setrgbcolor
 1504 825 M
-[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs \(Threads\) Looking Up The Cat)]
+[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs Looking Up The Cat)]
 ] -33.3 MCshow
 LTb
 % Begin plot #1
diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatalllin.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatalllin.eps
index 57c32e73..739cec6a 100644
--- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatalllin.eps
+++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatalllin.eps
@@ -1,7 +1,7 @@
 %!PS-Adobe-2.0
 %%Title: zoocatalllin.eps
 %%Creator: gnuplot 5.2 patchlevel 2
-%%CreationDate: Mon Dec 28 16:51:52 2020
+%%CreationDate: Sat Feb 20 18:10:20 2021
 %%DocumentFonts: (atend)
 %%BoundingBox: 50 50 302 410
 %%Orientation: Portrait
@@ -1872,7 +1872,7 @@ SDict begin [
   /Creator (gnuplot 5.2 patchlevel 2)
 %  /Producer (gnuplot)
 %  /Keywords ()
-  /CreationDate (Mon Dec 28 16:51:52 2020)
+  /CreationDate (Sat Feb 20 18:10:20 2021)
   /DOCINFO pdfmark
 end
 } ifelse
@@ -2166,7 +2166,7 @@ grestore
 LTb
 LCb setrgbcolor
 1504 825 M
-[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs \(Threads\) Looking Up The Cat)]
+[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs Looking Up The Cat)]
 ] -33.3 MCshow
 LTb
 % Begin plot #1
diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatonly.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatonly.eps
index 45e21f40..125c303a 100644
--- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatonly.eps
+++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatonly.eps
@@ -1,7 +1,7 @@
 %!PS-Adobe-2.0
 %%Title: zoocatonly.eps
 %%Creator: gnuplot 5.2 patchlevel 2
-%%CreationDate: Mon Dec 28 16:51:52 2020
+%%CreationDate: Sat Feb 20 18:10:20 2021
 %%DocumentFonts: (atend)
 %%BoundingBox: 50 50 302 410
 %%Orientation: Portrait
@@ -1872,7 +1872,7 @@ SDict begin [
   /Creator (gnuplot 5.2 patchlevel 2)
 %  /Producer (gnuplot)
 %  /Keywords ()
-  /CreationDate (Mon Dec 28 16:51:52 2020)
+  /CreationDate (Sat Feb 20 18:10:20 2021)
   /DOCINFO pdfmark
 end
 } ifelse
@@ -2300,7 +2300,7 @@ grestore
 LTb
 LCb setrgbcolor
 1504 825 M
-[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs \(Threads\) Looking Up The Cat)]
+[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs Looking Up The Cat)]
 ] -33.3 MCshow
 LTb
 % Begin plot #1
diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatonlylin.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatonlylin.eps
index fc9a0eff..b6e71ce6 100644
--- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatonlylin.eps
+++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatonlylin.eps
@@ -1,7 +1,7 @@
 %!PS-Adobe-2.0
 %%Title: zoocatonlylin.eps
 %%Creator: gnuplot 5.2 patchlevel 2
-%%CreationDate: Mon Dec 28 16:51:52 2020
+%%CreationDate: Sat Feb 20 18:10:20 2021
 %%DocumentFonts: (atend)
 %%BoundingBox: 50 50 302 410
 %%Orientation: Portrait
@@ -1872,7 +1872,7 @@ SDict begin [
   /Creator (gnuplot 5.2 patchlevel 2)
 %  /Producer (gnuplot)
 %  /Keywords ()
-  /CreationDate (Mon Dec 28 16:51:52 2020)
+  /CreationDate (Sat Feb 20 18:10:20 2021)
   /DOCINFO pdfmark
 end
 } ifelse
@@ -2162,7 +2162,7 @@ grestore
 LTb
 LCb setrgbcolor
 1504 825 M
-[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs \(Threads\) Looking Up The Cat)]
+[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs Looking Up The Cat)]
 ] -33.3 MCshow
 LTb
 % Begin plot #1
diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu-unsync.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu-unsync.eps
index 0270bf06..35f16b19 100644
--- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu-unsync.eps
+++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu-unsync.eps
@@ -1,7 +1,7 @@
 %!PS-Adobe-2.0
 %%Title: zoocpu-unsync.eps
 %%Creator: gnuplot 5.2 patchlevel 2
-%%CreationDate: Mon Dec 28 16:51:52 2020
+%%CreationDate: Sat Feb 20 18:10:20 2021
 %%DocumentFonts: (atend)
 %%BoundingBox: 50 50 302 410
 %%Orientation: Portrait
@@ -1872,7 +1872,7 @@ SDict begin [
   /Creator (gnuplot 5.2 patchlevel 2)
 %  /Producer (gnuplot)
 %  /Keywords ()
-  /CreationDate (Mon Dec 28 16:51:52 2020)
+  /CreationDate (Sat Feb 20 18:10:20 2021)
   /DOCINFO pdfmark
 end
 } ifelse
diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu-unsynclin.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu-unsynclin.eps
index 7fdcc108..303b88ab 100644
--- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu-unsynclin.eps
+++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu-unsynclin.eps
@@ -1,7 +1,7 @@
 %!PS-Adobe-2.0
 %%Title: zoocpu-unsynclin.eps
 %%Creator: gnuplot 5.2 patchlevel 2
-%%CreationDate: Mon Dec 28 16:51:52 2020
+%%CreationDate: Sat Feb 20 18:10:20 2021
 %%DocumentFonts: (atend)
 %%BoundingBox: 50 50 302 410
 %%Orientation: Portrait
@@ -1872,7 +1872,7 @@ SDict begin [
   /Creator (gnuplot 5.2 patchlevel 2)
 %  /Producer (gnuplot)
 %  /Keywords ()
-  /CreationDate (Mon Dec 28 16:51:52 2020)
+  /CreationDate (Sat Feb 20 18:10:20 2021)
   /DOCINFO pdfmark
 end
 } ifelse
diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu.eps
index 0f149c49..b6812ecc 100644
--- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu.eps
+++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu.eps
@@ -1,7 +1,7 @@
 %!PS-Adobe-2.0
 %%Title: zoocpu.eps
 %%Creator: gnuplot 5.2 patchlevel 2
-%%CreationDate: Mon Dec 28 16:51:52 2020
+%%CreationDate: Sat Feb 20 18:10:20 2021
 %%DocumentFonts: (atend)
 %%BoundingBox: 50 50 302 410
 %%Orientation: Portrait
@@ -1872,7 +1872,7 @@ SDict begin [
   /Creator (gnuplot 5.2 patchlevel 2)
 %  /Producer (gnuplot)
 %  /Keywords ()
-  /CreationDate (Mon Dec 28 16:51:52 2020)
+  /CreationDate (Sat Feb 20 18:10:20 2021)
   /DOCINFO pdfmark
 end
 } ifelse
diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktlin.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktlin.eps
index 399f68ff..f6b2d631 100644
--- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktlin.eps
+++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktlin.eps
@@ -1,7 +1,7 @@
 %!PS-Adobe-2.0
 %%Title: zoocpubktlin.eps
 %%Creator: gnuplot 5.2 patchlevel 2
-%%CreationDate: Mon Dec 28 16:51:52 2020
+%%CreationDate: Sat Feb 20 18:10:20 2021
 %%DocumentFonts: (atend)
 %%BoundingBox: 50 50 302 410
 %%Orientation: Portrait
@@ -1872,7 +1872,7 @@ SDict begin [
   /Creator (gnuplot 5.2 patchlevel 2)
 %  /Producer (gnuplot)
 %  /Keywords ()
-  /CreationDate (Mon Dec 28 16:51:52 2020)
+  /CreationDate (Sat Feb 20 18:10:20 2021)
   /DOCINFO pdfmark
 end
 } ifelse
diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktlin8.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktlin8.eps
index c5df471d..2644df6c 100644
--- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktlin8.eps
+++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktlin8.eps
@@ -1,7 +1,7 @@
 %!PS-Adobe-2.0
 %%Title: zoocpubktlin8.eps
 %%Creator: gnuplot 5.2 patchlevel 2
-%%CreationDate: Mon Dec 28 16:51:52 2020
+%%CreationDate: Sat Feb 20 18:10:20 2021
 %%DocumentFonts: (atend)
 %%BoundingBox: 50 50 302 410
 %%Orientation: Portrait
@@ -1872,7 +1872,7 @@ SDict begin [
   /Creator (gnuplot 5.2 patchlevel 2)
 %  /Producer (gnuplot)
 %  /Keywords ()
-  /CreationDate (Mon Dec 28 16:51:52 2020)
+  /CreationDate (Sat Feb 20 18:10:20 2021)
   /DOCINFO pdfmark
 end
 } ifelse
diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktsizelin.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktsizelin.eps
index cf21c090..cd8f341a 100644
--- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktsizelin.eps
+++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktsizelin.eps
@@ -1,7 +1,7 @@
 %!PS-Adobe-2.0
 %%Title: zoocpubktsizelin.eps
 %%Creator: gnuplot 5.2 patchlevel 2
-%%CreationDate: Mon Dec 28 16:51:52 2020
+%%CreationDate: Sat Feb 20 18:10:20 2021
 %%DocumentFonts: (atend)
 %%BoundingBox: 50 50 302 410
 %%Orientation: Portrait
@@ -1872,7 +1872,7 @@ SDict begin [
   /Creator (gnuplot 5.2 patchlevel 2)
 %  /Producer (gnuplot)
 %  /Keywords ()
-  /CreationDate (Mon Dec 28 16:51:52 2020)
+  /CreationDate (Sat Feb 20 18:10:20 2021)
   /DOCINFO pdfmark
 end
 } ifelse
diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulin.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulin.eps
index b4e40dbd..9cfab2a7 100644
--- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulin.eps
+++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulin.eps
@@ -1,7 +1,7 @@
 %!PS-Adobe-2.0
 %%Title: zoocpulin.eps
 %%Creator: gnuplot 5.2 patchlevel 2
-%%CreationDate: Mon Dec 28 16:51:52 2020
+%%CreationDate: Sat Feb 20 18:10:20 2021
 %%DocumentFonts: (atend)
 %%BoundingBox: 50 50 302 410
 %%Orientation: Portrait
@@ -1872,7 +1872,7 @@ SDict begin [
   /Creator (gnuplot 5.2 patchlevel 2)
 %  /Producer (gnuplot)
 %  /Keywords ()
-  /CreationDate (Mon Dec 28 16:51:52 2020)
+  /CreationDate (Sat Feb 20 18:10:20 2021)
   /DOCINFO pdfmark
 end
 } ifelse
diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulinqsbr.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulinqsbr.eps
index 1e2c121d..a2dee4c4 100644
--- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulinqsbr.eps
+++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulinqsbr.eps
@@ -1,7 +1,7 @@
 %!PS-Adobe-2.0
 %%Title: zoocpulinqsbr.eps
 %%Creator: gnuplot 5.2 patchlevel 2
-%%CreationDate: Mon Dec 28 16:51:52 2020
+%%CreationDate: Sat Feb 20 18:10:20 2021
 %%DocumentFonts: (atend)
 %%BoundingBox: 50 50 302 410
 %%Orientation: Portrait
@@ -1872,7 +1872,7 @@ SDict begin [
   /Creator (gnuplot 5.2 patchlevel 2)
 %  /Producer (gnuplot)
 %  /Keywords ()
-  /CreationDate (Mon Dec 28 16:51:52 2020)
+  /CreationDate (Sat Feb 20 18:10:20 2021)
   /DOCINFO pdfmark
 end
 } ifelse
diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulinqsbrunsync.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulinqsbrunsync.eps
index 593a8f1e..1f452a23 100644
--- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulinqsbrunsync.eps
+++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulinqsbrunsync.eps
@@ -1,7 +1,7 @@
 %!PS-Adobe-2.0
 %%Title: zoocpulinqsbrunsync.eps
 %%Creator: gnuplot 5.2 patchlevel 2
-%%CreationDate: Mon Dec 28 16:51:52 2020
+%%CreationDate: Sat Feb 20 18:10:20 2021
 %%DocumentFonts: (atend)
 %%BoundingBox: 50 50 302 410
 %%Orientation: Portrait
@@ -1872,7 +1872,7 @@ SDict begin [
   /Creator (gnuplot 5.2 patchlevel 2)
 %  /Producer (gnuplot)
 %  /Keywords ()
-  /CreationDate (Mon Dec 28 16:51:52 2020)
+  /CreationDate (Sat Feb 20 18:10:20 2021)
   /DOCINFO pdfmark
 end
 } ifelse
diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdate.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdate.eps
index 1c091c99..ac767eff 100644
--- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdate.eps
+++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdate.eps
@@ -1,7 +1,7 @@
 %!PS-Adobe-2.0
 %%Title: zooupdate.eps
 %%Creator: gnuplot 5.2 patchlevel 2
-%%CreationDate: Mon Dec 28 16:51:52 2020
+%%CreationDate: Sat Feb 20 18:10:20 2021
 %%DocumentFonts: (atend)
 %%BoundingBox: 50 50 302 410
 %%Orientation: Portrait
@@ -1872,7 +1872,7 @@ SDict begin [
   /Creator (gnuplot 5.2 patchlevel 2)
 %  /Producer (gnuplot)
 %  /Keywords ()
-  /CreationDate (Mon Dec 28 16:51:52 2020)
+  /CreationDate (Sat Feb 20 18:10:20 2021)
   /DOCINFO pdfmark
 end
 } ifelse
diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdatelu.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdatelu.eps
index 6c560af7..8def236a 100644
--- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdatelu.eps
+++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdatelu.eps
@@ -1,7 +1,7 @@
 %!PS-Adobe-2.0
 %%Title: zooupdatelu.eps
 %%Creator: gnuplot 5.2 patchlevel 2
-%%CreationDate: Mon Dec 28 16:51:52 2020
+%%CreationDate: Sat Feb 20 18:10:20 2021
 %%DocumentFonts: (atend)
 %%BoundingBox: 50 50 302 410
 %%Orientation: Portrait
@@ -1872,7 +1872,7 @@ SDict begin [
   /Creator (gnuplot 5.2 patchlevel 2)
 %  /Producer (gnuplot)
 %  /Keywords ()
-  /CreationDate (Mon Dec 28 16:51:52 2020)
+  /CreationDate (Sat Feb 20 18:10:20 2021)
   /DOCINFO pdfmark
 end
 } ifelse
diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdatelulin.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdatelulin.eps
index 46172fb6..34e1f5d2 100644
--- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdatelulin.eps
+++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdatelulin.eps
@@ -1,7 +1,7 @@
 %!PS-Adobe-2.0
 %%Title: zooupdatelulin.eps
 %%Creator: gnuplot 5.2 patchlevel 2
-%%CreationDate: Mon Dec 28 16:51:52 2020
+%%CreationDate: Sat Feb 20 18:10:20 2021
 %%DocumentFonts: (atend)
 %%BoundingBox: 50 50 302 410
 %%Orientation: Portrait
@@ -1872,7 +1872,7 @@ SDict begin [
   /Creator (gnuplot 5.2 patchlevel 2)
 %  /Producer (gnuplot)
 %  /Keywords ()
-  /CreationDate (Mon Dec 28 16:51:52 2020)
+  /CreationDate (Sat Feb 20 18:10:20 2021)
   /DOCINFO pdfmark
 end
 } ifelse
-- 
2.17.1



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

* Re: [PATCH -perfbook 3/3] datastruct: Shorten X label of cat-only lookup performance plot
  2021-02-20 15:20 ` [PATCH -perfbook 3/3] datastruct: Shorten X label of cat-only lookup performance plot Akira Yokosawa
@ 2021-02-21 22:02   ` Paul E. McKenney
  2021-02-21 22:28     ` Akira Yokosawa
  0 siblings, 1 reply; 6+ messages in thread
From: Paul E. McKenney @ 2021-02-21 22:02 UTC (permalink / raw)
  To: Akira Yokosawa; +Cc: perfbook

On Sun, Feb 21, 2021 at 12:20:09AM +0900, Akira Yokosawa wrote:
> Removing "(Threads)" allows these labels to fit the the plot-area.
> 
> Plots in the other subdirectories are not touched.
> 
> Signed-off-by: Akira Yokosawa <akiyks@gmail.com>

I took the first two of this series as part of -rc8, but the correct
way to fix this one would be to change the plots.sh scripts that
generated the plot.  I -think- that all of these were generated by
CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/plots.sh, but it
would be good to double-check.

If so, edit that plots.sh file to suit, run it, and then rebuild
the book.  That way, these changes don't get overwritten the next
time I collect new data.  Which admittedly might be quite some time, 
but still...  ;-)

							Thanx, Paul

> ---
>  .../hash/data/hps.perf.2020.11.26a/perftest.eps        |  4 ++--
>  .../hash/data/hps.perf.2020.11.26a/perftestlin.eps     |  4 ++--
>  .../datastruct/hash/data/hps.perf.2020.11.26a/plots.sh | 10 +++++-----
>  .../data/hps.perf.2020.11.26a/zoocatall-unsync.eps     |  6 +++---
>  .../hash/data/hps.perf.2020.11.26a/zoocatall.eps       |  6 +++---
>  .../hash/data/hps.perf.2020.11.26a/zoocatalllin.eps    |  6 +++---
>  .../hash/data/hps.perf.2020.11.26a/zoocatonly.eps      |  6 +++---
>  .../hash/data/hps.perf.2020.11.26a/zoocatonlylin.eps   |  6 +++---
>  .../hash/data/hps.perf.2020.11.26a/zoocpu-unsync.eps   |  4 ++--
>  .../data/hps.perf.2020.11.26a/zoocpu-unsynclin.eps     |  4 ++--
>  .../hash/data/hps.perf.2020.11.26a/zoocpu.eps          |  4 ++--
>  .../hash/data/hps.perf.2020.11.26a/zoocpubktlin.eps    |  4 ++--
>  .../hash/data/hps.perf.2020.11.26a/zoocpubktlin8.eps   |  4 ++--
>  .../data/hps.perf.2020.11.26a/zoocpubktsizelin.eps     |  4 ++--
>  .../hash/data/hps.perf.2020.11.26a/zoocpulin.eps       |  4 ++--
>  .../hash/data/hps.perf.2020.11.26a/zoocpulinqsbr.eps   |  4 ++--
>  .../data/hps.perf.2020.11.26a/zoocpulinqsbrunsync.eps  |  4 ++--
>  .../hash/data/hps.perf.2020.11.26a/zooupdate.eps       |  4 ++--
>  .../hash/data/hps.perf.2020.11.26a/zooupdatelu.eps     |  4 ++--
>  .../hash/data/hps.perf.2020.11.26a/zooupdatelulin.eps  |  4 ++--
>  20 files changed, 48 insertions(+), 48 deletions(-)
> 
> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/perftest.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/perftest.eps
> index 89aba0fb..cdec71fa 100644
> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/perftest.eps
> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/perftest.eps
> @@ -1,7 +1,7 @@
>  %!PS-Adobe-2.0
>  %%Title: perftest.eps
>  %%Creator: gnuplot 5.2 patchlevel 2
> -%%CreationDate: Mon Dec 28 16:51:52 2020
> +%%CreationDate: Sat Feb 20 18:10:20 2021
>  %%DocumentFonts: (atend)
>  %%BoundingBox: 50 50 302 410
>  %%Orientation: Portrait
> @@ -1872,7 +1872,7 @@ SDict begin [
>    /Creator (gnuplot 5.2 patchlevel 2)
>  %  /Producer (gnuplot)
>  %  /Keywords ()
> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>    /DOCINFO pdfmark
>  end
>  } ifelse
> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/perftestlin.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/perftestlin.eps
> index 2c4be05e..94f3529a 100644
> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/perftestlin.eps
> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/perftestlin.eps
> @@ -1,7 +1,7 @@
>  %!PS-Adobe-2.0
>  %%Title: perftestlin.eps
>  %%Creator: gnuplot 5.2 patchlevel 2
> -%%CreationDate: Mon Dec 28 16:51:52 2020
> +%%CreationDate: Sat Feb 20 18:10:20 2021
>  %%DocumentFonts: (atend)
>  %%BoundingBox: 50 50 302 410
>  %%Orientation: Portrait
> @@ -1872,7 +1872,7 @@ SDict begin [
>    /Creator (gnuplot 5.2 patchlevel 2)
>  %  /Producer (gnuplot)
>  %  /Keywords ()
> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>    /DOCINFO pdfmark
>  end
>  } ifelse
> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/plots.sh b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/plots.sh
> index 5d6ab75a..11b7d4d3 100644
> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/plots.sh
> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/plots.sh
> @@ -236,7 +236,7 @@ gnuplot << ---EOF---
>  set term postscript portrait ${fontsize} enhanced "NimbusSanL-Regu" fontfile "${font}fonts/uhvr8a.pfb"
>  set size square ${plotsize},${plotsize}
>  set output "zoocatall.eps"
> -set xlabel "Number of CPUs (Threads) Looking Up The Cat"
> +set xlabel "Number of CPUs Looking Up The Cat"
>  set ylabel "Total Lookups per Millisecond"
>  set logscale xy
>  #set yrange [1:10000]
> @@ -254,7 +254,7 @@ gnuplot << ---EOF---
>  set term postscript portrait ${fontsize} enhanced "NimbusSanL-Regu" fontfile "${font}fonts/uhvr8a.pfb"
>  set size square ${plotsize},${plotsize}
>  set output "zoocatalllin.eps"
> -set xlabel "Number of CPUs (Threads) Looking Up The Cat"
> +set xlabel "Number of CPUs Looking Up The Cat"
>  set ylabel "Total Lookups per Millisecond"
>  #set logscale xy
>  #set yrange [1:10000]
> @@ -272,7 +272,7 @@ gnuplot << ---EOF---
>  set term postscript portrait ${fontsize} enhanced "NimbusSanL-Regu" fontfile "${font}fonts/uhvr8a.pfb"
>  set size square ${plotsize},${plotsize}
>  set output "zoocatall-unsync.eps"
> -set xlabel "Number of CPUs (Threads) Looking Up The Cat"
> +set xlabel "Number of CPUs Looking Up The Cat"
>  set ylabel "Total Lookups per Millisecond"
>  set logscale xy
>  #set yrange [1:10000]
> @@ -291,7 +291,7 @@ gnuplot << ---EOF---
>  set term postscript portrait ${fontsize} enhanced "NimbusSanL-Regu" fontfile "${font}fonts/uhvr8a.pfb"
>  set size square ${plotsize},${plotsize}
>  set output "zoocatonly.eps"
> -set xlabel "Number of CPUs (Threads) Looking Up The Cat"
> +set xlabel "Number of CPUs Looking Up The Cat"
>  set ylabel "Cat Lookups per Millisecond"
>  set logscale xy
>  #set yrange [1:10000]
> @@ -309,7 +309,7 @@ gnuplot << ---EOF---
>  set term postscript portrait ${fontsize} enhanced "NimbusSanL-Regu" fontfile "${font}fonts/uhvr8a.pfb"
>  set size square ${plotsize},${plotsize}
>  set output "zoocatonlylin.eps"
> -set xlabel "Number of CPUs (Threads) Looking Up The Cat"
> +set xlabel "Number of CPUs Looking Up The Cat"
>  set ylabel "Cat Lookups per Millisecond"
>  #set logscale xy
>  #set yrange [1:10000]
> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatall-unsync.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatall-unsync.eps
> index 3de41316..13fe8753 100644
> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatall-unsync.eps
> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatall-unsync.eps
> @@ -1,7 +1,7 @@
>  %!PS-Adobe-2.0
>  %%Title: zoocatall-unsync.eps
>  %%Creator: gnuplot 5.2 patchlevel 2
> -%%CreationDate: Mon Dec 28 16:51:52 2020
> +%%CreationDate: Sat Feb 20 18:10:20 2021
>  %%DocumentFonts: (atend)
>  %%BoundingBox: 50 50 302 410
>  %%Orientation: Portrait
> @@ -1872,7 +1872,7 @@ SDict begin [
>    /Creator (gnuplot 5.2 patchlevel 2)
>  %  /Producer (gnuplot)
>  %  /Keywords ()
> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>    /DOCINFO pdfmark
>  end
>  } ifelse
> @@ -2218,7 +2218,7 @@ grestore
>  LTb
>  LCb setrgbcolor
>  1504 825 M
> -[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs \(Threads\) Looking Up The Cat)]
> +[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs Looking Up The Cat)]
>  ] -33.3 MCshow
>  LTb
>  % Begin plot #1
> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatall.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatall.eps
> index a6295c11..86b97f0a 100644
> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatall.eps
> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatall.eps
> @@ -1,7 +1,7 @@
>  %!PS-Adobe-2.0
>  %%Title: zoocatall.eps
>  %%Creator: gnuplot 5.2 patchlevel 2
> -%%CreationDate: Mon Dec 28 16:51:52 2020
> +%%CreationDate: Sat Feb 20 18:10:20 2021
>  %%DocumentFonts: (atend)
>  %%BoundingBox: 50 50 302 410
>  %%Orientation: Portrait
> @@ -1872,7 +1872,7 @@ SDict begin [
>    /Creator (gnuplot 5.2 patchlevel 2)
>  %  /Producer (gnuplot)
>  %  /Keywords ()
> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>    /DOCINFO pdfmark
>  end
>  } ifelse
> @@ -2214,7 +2214,7 @@ grestore
>  LTb
>  LCb setrgbcolor
>  1504 825 M
> -[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs \(Threads\) Looking Up The Cat)]
> +[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs Looking Up The Cat)]
>  ] -33.3 MCshow
>  LTb
>  % Begin plot #1
> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatalllin.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatalllin.eps
> index 57c32e73..739cec6a 100644
> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatalllin.eps
> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatalllin.eps
> @@ -1,7 +1,7 @@
>  %!PS-Adobe-2.0
>  %%Title: zoocatalllin.eps
>  %%Creator: gnuplot 5.2 patchlevel 2
> -%%CreationDate: Mon Dec 28 16:51:52 2020
> +%%CreationDate: Sat Feb 20 18:10:20 2021
>  %%DocumentFonts: (atend)
>  %%BoundingBox: 50 50 302 410
>  %%Orientation: Portrait
> @@ -1872,7 +1872,7 @@ SDict begin [
>    /Creator (gnuplot 5.2 patchlevel 2)
>  %  /Producer (gnuplot)
>  %  /Keywords ()
> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>    /DOCINFO pdfmark
>  end
>  } ifelse
> @@ -2166,7 +2166,7 @@ grestore
>  LTb
>  LCb setrgbcolor
>  1504 825 M
> -[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs \(Threads\) Looking Up The Cat)]
> +[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs Looking Up The Cat)]
>  ] -33.3 MCshow
>  LTb
>  % Begin plot #1
> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatonly.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatonly.eps
> index 45e21f40..125c303a 100644
> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatonly.eps
> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatonly.eps
> @@ -1,7 +1,7 @@
>  %!PS-Adobe-2.0
>  %%Title: zoocatonly.eps
>  %%Creator: gnuplot 5.2 patchlevel 2
> -%%CreationDate: Mon Dec 28 16:51:52 2020
> +%%CreationDate: Sat Feb 20 18:10:20 2021
>  %%DocumentFonts: (atend)
>  %%BoundingBox: 50 50 302 410
>  %%Orientation: Portrait
> @@ -1872,7 +1872,7 @@ SDict begin [
>    /Creator (gnuplot 5.2 patchlevel 2)
>  %  /Producer (gnuplot)
>  %  /Keywords ()
> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>    /DOCINFO pdfmark
>  end
>  } ifelse
> @@ -2300,7 +2300,7 @@ grestore
>  LTb
>  LCb setrgbcolor
>  1504 825 M
> -[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs \(Threads\) Looking Up The Cat)]
> +[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs Looking Up The Cat)]
>  ] -33.3 MCshow
>  LTb
>  % Begin plot #1
> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatonlylin.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatonlylin.eps
> index fc9a0eff..b6e71ce6 100644
> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatonlylin.eps
> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatonlylin.eps
> @@ -1,7 +1,7 @@
>  %!PS-Adobe-2.0
>  %%Title: zoocatonlylin.eps
>  %%Creator: gnuplot 5.2 patchlevel 2
> -%%CreationDate: Mon Dec 28 16:51:52 2020
> +%%CreationDate: Sat Feb 20 18:10:20 2021
>  %%DocumentFonts: (atend)
>  %%BoundingBox: 50 50 302 410
>  %%Orientation: Portrait
> @@ -1872,7 +1872,7 @@ SDict begin [
>    /Creator (gnuplot 5.2 patchlevel 2)
>  %  /Producer (gnuplot)
>  %  /Keywords ()
> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>    /DOCINFO pdfmark
>  end
>  } ifelse
> @@ -2162,7 +2162,7 @@ grestore
>  LTb
>  LCb setrgbcolor
>  1504 825 M
> -[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs \(Threads\) Looking Up The Cat)]
> +[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs Looking Up The Cat)]
>  ] -33.3 MCshow
>  LTb
>  % Begin plot #1
> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu-unsync.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu-unsync.eps
> index 0270bf06..35f16b19 100644
> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu-unsync.eps
> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu-unsync.eps
> @@ -1,7 +1,7 @@
>  %!PS-Adobe-2.0
>  %%Title: zoocpu-unsync.eps
>  %%Creator: gnuplot 5.2 patchlevel 2
> -%%CreationDate: Mon Dec 28 16:51:52 2020
> +%%CreationDate: Sat Feb 20 18:10:20 2021
>  %%DocumentFonts: (atend)
>  %%BoundingBox: 50 50 302 410
>  %%Orientation: Portrait
> @@ -1872,7 +1872,7 @@ SDict begin [
>    /Creator (gnuplot 5.2 patchlevel 2)
>  %  /Producer (gnuplot)
>  %  /Keywords ()
> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>    /DOCINFO pdfmark
>  end
>  } ifelse
> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu-unsynclin.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu-unsynclin.eps
> index 7fdcc108..303b88ab 100644
> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu-unsynclin.eps
> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu-unsynclin.eps
> @@ -1,7 +1,7 @@
>  %!PS-Adobe-2.0
>  %%Title: zoocpu-unsynclin.eps
>  %%Creator: gnuplot 5.2 patchlevel 2
> -%%CreationDate: Mon Dec 28 16:51:52 2020
> +%%CreationDate: Sat Feb 20 18:10:20 2021
>  %%DocumentFonts: (atend)
>  %%BoundingBox: 50 50 302 410
>  %%Orientation: Portrait
> @@ -1872,7 +1872,7 @@ SDict begin [
>    /Creator (gnuplot 5.2 patchlevel 2)
>  %  /Producer (gnuplot)
>  %  /Keywords ()
> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>    /DOCINFO pdfmark
>  end
>  } ifelse
> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu.eps
> index 0f149c49..b6812ecc 100644
> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu.eps
> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu.eps
> @@ -1,7 +1,7 @@
>  %!PS-Adobe-2.0
>  %%Title: zoocpu.eps
>  %%Creator: gnuplot 5.2 patchlevel 2
> -%%CreationDate: Mon Dec 28 16:51:52 2020
> +%%CreationDate: Sat Feb 20 18:10:20 2021
>  %%DocumentFonts: (atend)
>  %%BoundingBox: 50 50 302 410
>  %%Orientation: Portrait
> @@ -1872,7 +1872,7 @@ SDict begin [
>    /Creator (gnuplot 5.2 patchlevel 2)
>  %  /Producer (gnuplot)
>  %  /Keywords ()
> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>    /DOCINFO pdfmark
>  end
>  } ifelse
> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktlin.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktlin.eps
> index 399f68ff..f6b2d631 100644
> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktlin.eps
> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktlin.eps
> @@ -1,7 +1,7 @@
>  %!PS-Adobe-2.0
>  %%Title: zoocpubktlin.eps
>  %%Creator: gnuplot 5.2 patchlevel 2
> -%%CreationDate: Mon Dec 28 16:51:52 2020
> +%%CreationDate: Sat Feb 20 18:10:20 2021
>  %%DocumentFonts: (atend)
>  %%BoundingBox: 50 50 302 410
>  %%Orientation: Portrait
> @@ -1872,7 +1872,7 @@ SDict begin [
>    /Creator (gnuplot 5.2 patchlevel 2)
>  %  /Producer (gnuplot)
>  %  /Keywords ()
> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>    /DOCINFO pdfmark
>  end
>  } ifelse
> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktlin8.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktlin8.eps
> index c5df471d..2644df6c 100644
> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktlin8.eps
> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktlin8.eps
> @@ -1,7 +1,7 @@
>  %!PS-Adobe-2.0
>  %%Title: zoocpubktlin8.eps
>  %%Creator: gnuplot 5.2 patchlevel 2
> -%%CreationDate: Mon Dec 28 16:51:52 2020
> +%%CreationDate: Sat Feb 20 18:10:20 2021
>  %%DocumentFonts: (atend)
>  %%BoundingBox: 50 50 302 410
>  %%Orientation: Portrait
> @@ -1872,7 +1872,7 @@ SDict begin [
>    /Creator (gnuplot 5.2 patchlevel 2)
>  %  /Producer (gnuplot)
>  %  /Keywords ()
> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>    /DOCINFO pdfmark
>  end
>  } ifelse
> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktsizelin.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktsizelin.eps
> index cf21c090..cd8f341a 100644
> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktsizelin.eps
> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktsizelin.eps
> @@ -1,7 +1,7 @@
>  %!PS-Adobe-2.0
>  %%Title: zoocpubktsizelin.eps
>  %%Creator: gnuplot 5.2 patchlevel 2
> -%%CreationDate: Mon Dec 28 16:51:52 2020
> +%%CreationDate: Sat Feb 20 18:10:20 2021
>  %%DocumentFonts: (atend)
>  %%BoundingBox: 50 50 302 410
>  %%Orientation: Portrait
> @@ -1872,7 +1872,7 @@ SDict begin [
>    /Creator (gnuplot 5.2 patchlevel 2)
>  %  /Producer (gnuplot)
>  %  /Keywords ()
> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>    /DOCINFO pdfmark
>  end
>  } ifelse
> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulin.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulin.eps
> index b4e40dbd..9cfab2a7 100644
> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulin.eps
> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulin.eps
> @@ -1,7 +1,7 @@
>  %!PS-Adobe-2.0
>  %%Title: zoocpulin.eps
>  %%Creator: gnuplot 5.2 patchlevel 2
> -%%CreationDate: Mon Dec 28 16:51:52 2020
> +%%CreationDate: Sat Feb 20 18:10:20 2021
>  %%DocumentFonts: (atend)
>  %%BoundingBox: 50 50 302 410
>  %%Orientation: Portrait
> @@ -1872,7 +1872,7 @@ SDict begin [
>    /Creator (gnuplot 5.2 patchlevel 2)
>  %  /Producer (gnuplot)
>  %  /Keywords ()
> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>    /DOCINFO pdfmark
>  end
>  } ifelse
> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulinqsbr.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulinqsbr.eps
> index 1e2c121d..a2dee4c4 100644
> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulinqsbr.eps
> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulinqsbr.eps
> @@ -1,7 +1,7 @@
>  %!PS-Adobe-2.0
>  %%Title: zoocpulinqsbr.eps
>  %%Creator: gnuplot 5.2 patchlevel 2
> -%%CreationDate: Mon Dec 28 16:51:52 2020
> +%%CreationDate: Sat Feb 20 18:10:20 2021
>  %%DocumentFonts: (atend)
>  %%BoundingBox: 50 50 302 410
>  %%Orientation: Portrait
> @@ -1872,7 +1872,7 @@ SDict begin [
>    /Creator (gnuplot 5.2 patchlevel 2)
>  %  /Producer (gnuplot)
>  %  /Keywords ()
> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>    /DOCINFO pdfmark
>  end
>  } ifelse
> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulinqsbrunsync.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulinqsbrunsync.eps
> index 593a8f1e..1f452a23 100644
> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulinqsbrunsync.eps
> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulinqsbrunsync.eps
> @@ -1,7 +1,7 @@
>  %!PS-Adobe-2.0
>  %%Title: zoocpulinqsbrunsync.eps
>  %%Creator: gnuplot 5.2 patchlevel 2
> -%%CreationDate: Mon Dec 28 16:51:52 2020
> +%%CreationDate: Sat Feb 20 18:10:20 2021
>  %%DocumentFonts: (atend)
>  %%BoundingBox: 50 50 302 410
>  %%Orientation: Portrait
> @@ -1872,7 +1872,7 @@ SDict begin [
>    /Creator (gnuplot 5.2 patchlevel 2)
>  %  /Producer (gnuplot)
>  %  /Keywords ()
> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>    /DOCINFO pdfmark
>  end
>  } ifelse
> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdate.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdate.eps
> index 1c091c99..ac767eff 100644
> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdate.eps
> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdate.eps
> @@ -1,7 +1,7 @@
>  %!PS-Adobe-2.0
>  %%Title: zooupdate.eps
>  %%Creator: gnuplot 5.2 patchlevel 2
> -%%CreationDate: Mon Dec 28 16:51:52 2020
> +%%CreationDate: Sat Feb 20 18:10:20 2021
>  %%DocumentFonts: (atend)
>  %%BoundingBox: 50 50 302 410
>  %%Orientation: Portrait
> @@ -1872,7 +1872,7 @@ SDict begin [
>    /Creator (gnuplot 5.2 patchlevel 2)
>  %  /Producer (gnuplot)
>  %  /Keywords ()
> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>    /DOCINFO pdfmark
>  end
>  } ifelse
> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdatelu.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdatelu.eps
> index 6c560af7..8def236a 100644
> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdatelu.eps
> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdatelu.eps
> @@ -1,7 +1,7 @@
>  %!PS-Adobe-2.0
>  %%Title: zooupdatelu.eps
>  %%Creator: gnuplot 5.2 patchlevel 2
> -%%CreationDate: Mon Dec 28 16:51:52 2020
> +%%CreationDate: Sat Feb 20 18:10:20 2021
>  %%DocumentFonts: (atend)
>  %%BoundingBox: 50 50 302 410
>  %%Orientation: Portrait
> @@ -1872,7 +1872,7 @@ SDict begin [
>    /Creator (gnuplot 5.2 patchlevel 2)
>  %  /Producer (gnuplot)
>  %  /Keywords ()
> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>    /DOCINFO pdfmark
>  end
>  } ifelse
> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdatelulin.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdatelulin.eps
> index 46172fb6..34e1f5d2 100644
> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdatelulin.eps
> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdatelulin.eps
> @@ -1,7 +1,7 @@
>  %!PS-Adobe-2.0
>  %%Title: zooupdatelulin.eps
>  %%Creator: gnuplot 5.2 patchlevel 2
> -%%CreationDate: Mon Dec 28 16:51:52 2020
> +%%CreationDate: Sat Feb 20 18:10:20 2021
>  %%DocumentFonts: (atend)
>  %%BoundingBox: 50 50 302 410
>  %%Orientation: Portrait
> @@ -1872,7 +1872,7 @@ SDict begin [
>    /Creator (gnuplot 5.2 patchlevel 2)
>  %  /Producer (gnuplot)
>  %  /Keywords ()
> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>    /DOCINFO pdfmark
>  end
>  } ifelse
> -- 
> 2.17.1
> 
> 

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

* Re: [PATCH -perfbook 3/3] datastruct: Shorten X label of cat-only lookup performance plot
  2021-02-21 22:02   ` Paul E. McKenney
@ 2021-02-21 22:28     ` Akira Yokosawa
  2021-02-22 23:26       ` Paul E. McKenney
  0 siblings, 1 reply; 6+ messages in thread
From: Akira Yokosawa @ 2021-02-21 22:28 UTC (permalink / raw)
  To: Paul E. McKenney; +Cc: perfbook, Akira Yokosawa

On Sun, 21 Feb 2021 14:02:00 -0800, Paul E. McKenney wrote:
> On Sun, Feb 21, 2021 at 12:20:09AM +0900, Akira Yokosawa wrote:
>> Removing "(Threads)" allows these labels to fit the the plot-area.
>>
>> Plots in the other subdirectories are not touched.
>>
>> Signed-off-by: Akira Yokosawa <akiyks@gmail.com>
> 
> I took the first two of this series as part of -rc8, but the correct
> way to fix this one would be to change the plots.sh scripts that
> generated the plot.

Well, that's what I did in patch 3/3.

>>  .../datastruct/hash/data/hps.perf.2020.11.26a/plots.sh | 10 +++++-----

See?  ;-)

        Thanks, Akira

>                      I -think- that all of these were generated by
> CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/plots.sh, but it
> would be good to double-check.
> 
> If so, edit that plots.sh file to suit, run it, and then rebuild
> the book.  That way, these changes don't get overwritten the next
> time I collect new data.  Which admittedly might be quite some time, 
> but still...  ;-)
> 
> 							Thanx, Paul
> 
>> ---
>>  .../hash/data/hps.perf.2020.11.26a/perftest.eps        |  4 ++--
>>  .../hash/data/hps.perf.2020.11.26a/perftestlin.eps     |  4 ++--
>>  .../datastruct/hash/data/hps.perf.2020.11.26a/plots.sh | 10 +++++-----
>>  .../data/hps.perf.2020.11.26a/zoocatall-unsync.eps     |  6 +++---
>>  .../hash/data/hps.perf.2020.11.26a/zoocatall.eps       |  6 +++---
>>  .../hash/data/hps.perf.2020.11.26a/zoocatalllin.eps    |  6 +++---
>>  .../hash/data/hps.perf.2020.11.26a/zoocatonly.eps      |  6 +++---
>>  .../hash/data/hps.perf.2020.11.26a/zoocatonlylin.eps   |  6 +++---
>>  .../hash/data/hps.perf.2020.11.26a/zoocpu-unsync.eps   |  4 ++--
>>  .../data/hps.perf.2020.11.26a/zoocpu-unsynclin.eps     |  4 ++--
>>  .../hash/data/hps.perf.2020.11.26a/zoocpu.eps          |  4 ++--
>>  .../hash/data/hps.perf.2020.11.26a/zoocpubktlin.eps    |  4 ++--
>>  .../hash/data/hps.perf.2020.11.26a/zoocpubktlin8.eps   |  4 ++--
>>  .../data/hps.perf.2020.11.26a/zoocpubktsizelin.eps     |  4 ++--
>>  .../hash/data/hps.perf.2020.11.26a/zoocpulin.eps       |  4 ++--
>>  .../hash/data/hps.perf.2020.11.26a/zoocpulinqsbr.eps   |  4 ++--
>>  .../data/hps.perf.2020.11.26a/zoocpulinqsbrunsync.eps  |  4 ++--
>>  .../hash/data/hps.perf.2020.11.26a/zooupdate.eps       |  4 ++--
>>  .../hash/data/hps.perf.2020.11.26a/zooupdatelu.eps     |  4 ++--
>>  .../hash/data/hps.perf.2020.11.26a/zooupdatelulin.eps  |  4 ++--
>>  20 files changed, 48 insertions(+), 48 deletions(-)
>>
>> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/perftest.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/perftest.eps
>> index 89aba0fb..cdec71fa 100644
>> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/perftest.eps
>> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/perftest.eps
>> @@ -1,7 +1,7 @@
>>  %!PS-Adobe-2.0
>>  %%Title: perftest.eps
>>  %%Creator: gnuplot 5.2 patchlevel 2
>> -%%CreationDate: Mon Dec 28 16:51:52 2020
>> +%%CreationDate: Sat Feb 20 18:10:20 2021
>>  %%DocumentFonts: (atend)
>>  %%BoundingBox: 50 50 302 410
>>  %%Orientation: Portrait
>> @@ -1872,7 +1872,7 @@ SDict begin [
>>    /Creator (gnuplot 5.2 patchlevel 2)
>>  %  /Producer (gnuplot)
>>  %  /Keywords ()
>> -  /CreationDate (Mon Dec 28 16:51:52 2020)
>> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>>    /DOCINFO pdfmark
>>  end
>>  } ifelse
>> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/perftestlin.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/perftestlin.eps
>> index 2c4be05e..94f3529a 100644
>> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/perftestlin.eps
>> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/perftestlin.eps
>> @@ -1,7 +1,7 @@
>>  %!PS-Adobe-2.0
>>  %%Title: perftestlin.eps
>>  %%Creator: gnuplot 5.2 patchlevel 2
>> -%%CreationDate: Mon Dec 28 16:51:52 2020
>> +%%CreationDate: Sat Feb 20 18:10:20 2021
>>  %%DocumentFonts: (atend)
>>  %%BoundingBox: 50 50 302 410
>>  %%Orientation: Portrait
>> @@ -1872,7 +1872,7 @@ SDict begin [
>>    /Creator (gnuplot 5.2 patchlevel 2)
>>  %  /Producer (gnuplot)
>>  %  /Keywords ()
>> -  /CreationDate (Mon Dec 28 16:51:52 2020)
>> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>>    /DOCINFO pdfmark
>>  end
>>  } ifelse
>> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/plots.sh b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/plots.sh
>> index 5d6ab75a..11b7d4d3 100644
>> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/plots.sh
>> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/plots.sh
>> @@ -236,7 +236,7 @@ gnuplot << ---EOF---
>>  set term postscript portrait ${fontsize} enhanced "NimbusSanL-Regu" fontfile "${font}fonts/uhvr8a.pfb"
>>  set size square ${plotsize},${plotsize}
>>  set output "zoocatall.eps"
>> -set xlabel "Number of CPUs (Threads) Looking Up The Cat"
>> +set xlabel "Number of CPUs Looking Up The Cat"
>>  set ylabel "Total Lookups per Millisecond"
>>  set logscale xy
>>  #set yrange [1:10000]
>> @@ -254,7 +254,7 @@ gnuplot << ---EOF---
>>  set term postscript portrait ${fontsize} enhanced "NimbusSanL-Regu" fontfile "${font}fonts/uhvr8a.pfb"
>>  set size square ${plotsize},${plotsize}
>>  set output "zoocatalllin.eps"
>> -set xlabel "Number of CPUs (Threads) Looking Up The Cat"
>> +set xlabel "Number of CPUs Looking Up The Cat"
>>  set ylabel "Total Lookups per Millisecond"
>>  #set logscale xy
>>  #set yrange [1:10000]
>> @@ -272,7 +272,7 @@ gnuplot << ---EOF---
>>  set term postscript portrait ${fontsize} enhanced "NimbusSanL-Regu" fontfile "${font}fonts/uhvr8a.pfb"
>>  set size square ${plotsize},${plotsize}
>>  set output "zoocatall-unsync.eps"
>> -set xlabel "Number of CPUs (Threads) Looking Up The Cat"
>> +set xlabel "Number of CPUs Looking Up The Cat"
>>  set ylabel "Total Lookups per Millisecond"
>>  set logscale xy
>>  #set yrange [1:10000]
>> @@ -291,7 +291,7 @@ gnuplot << ---EOF---
>>  set term postscript portrait ${fontsize} enhanced "NimbusSanL-Regu" fontfile "${font}fonts/uhvr8a.pfb"
>>  set size square ${plotsize},${plotsize}
>>  set output "zoocatonly.eps"
>> -set xlabel "Number of CPUs (Threads) Looking Up The Cat"
>> +set xlabel "Number of CPUs Looking Up The Cat"
>>  set ylabel "Cat Lookups per Millisecond"
>>  set logscale xy
>>  #set yrange [1:10000]
>> @@ -309,7 +309,7 @@ gnuplot << ---EOF---
>>  set term postscript portrait ${fontsize} enhanced "NimbusSanL-Regu" fontfile "${font}fonts/uhvr8a.pfb"
>>  set size square ${plotsize},${plotsize}
>>  set output "zoocatonlylin.eps"
>> -set xlabel "Number of CPUs (Threads) Looking Up The Cat"
>> +set xlabel "Number of CPUs Looking Up The Cat"
>>  set ylabel "Cat Lookups per Millisecond"
>>  #set logscale xy
>>  #set yrange [1:10000]
>> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatall-unsync.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatall-unsync.eps
>> index 3de41316..13fe8753 100644
>> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatall-unsync.eps
>> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatall-unsync.eps
>> @@ -1,7 +1,7 @@
>>  %!PS-Adobe-2.0
>>  %%Title: zoocatall-unsync.eps
>>  %%Creator: gnuplot 5.2 patchlevel 2
>> -%%CreationDate: Mon Dec 28 16:51:52 2020
>> +%%CreationDate: Sat Feb 20 18:10:20 2021
>>  %%DocumentFonts: (atend)
>>  %%BoundingBox: 50 50 302 410
>>  %%Orientation: Portrait
>> @@ -1872,7 +1872,7 @@ SDict begin [
>>    /Creator (gnuplot 5.2 patchlevel 2)
>>  %  /Producer (gnuplot)
>>  %  /Keywords ()
>> -  /CreationDate (Mon Dec 28 16:51:52 2020)
>> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>>    /DOCINFO pdfmark
>>  end
>>  } ifelse
>> @@ -2218,7 +2218,7 @@ grestore
>>  LTb
>>  LCb setrgbcolor
>>  1504 825 M
>> -[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs \(Threads\) Looking Up The Cat)]
>> +[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs Looking Up The Cat)]
>>  ] -33.3 MCshow
>>  LTb
>>  % Begin plot #1
>> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatall.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatall.eps
>> index a6295c11..86b97f0a 100644
>> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatall.eps
>> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatall.eps
>> @@ -1,7 +1,7 @@
>>  %!PS-Adobe-2.0
>>  %%Title: zoocatall.eps
>>  %%Creator: gnuplot 5.2 patchlevel 2
>> -%%CreationDate: Mon Dec 28 16:51:52 2020
>> +%%CreationDate: Sat Feb 20 18:10:20 2021
>>  %%DocumentFonts: (atend)
>>  %%BoundingBox: 50 50 302 410
>>  %%Orientation: Portrait
>> @@ -1872,7 +1872,7 @@ SDict begin [
>>    /Creator (gnuplot 5.2 patchlevel 2)
>>  %  /Producer (gnuplot)
>>  %  /Keywords ()
>> -  /CreationDate (Mon Dec 28 16:51:52 2020)
>> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>>    /DOCINFO pdfmark
>>  end
>>  } ifelse
>> @@ -2214,7 +2214,7 @@ grestore
>>  LTb
>>  LCb setrgbcolor
>>  1504 825 M
>> -[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs \(Threads\) Looking Up The Cat)]
>> +[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs Looking Up The Cat)]
>>  ] -33.3 MCshow
>>  LTb
>>  % Begin plot #1
>> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatalllin.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatalllin.eps
>> index 57c32e73..739cec6a 100644
>> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatalllin.eps
>> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatalllin.eps
>> @@ -1,7 +1,7 @@
>>  %!PS-Adobe-2.0
>>  %%Title: zoocatalllin.eps
>>  %%Creator: gnuplot 5.2 patchlevel 2
>> -%%CreationDate: Mon Dec 28 16:51:52 2020
>> +%%CreationDate: Sat Feb 20 18:10:20 2021
>>  %%DocumentFonts: (atend)
>>  %%BoundingBox: 50 50 302 410
>>  %%Orientation: Portrait
>> @@ -1872,7 +1872,7 @@ SDict begin [
>>    /Creator (gnuplot 5.2 patchlevel 2)
>>  %  /Producer (gnuplot)
>>  %  /Keywords ()
>> -  /CreationDate (Mon Dec 28 16:51:52 2020)
>> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>>    /DOCINFO pdfmark
>>  end
>>  } ifelse
>> @@ -2166,7 +2166,7 @@ grestore
>>  LTb
>>  LCb setrgbcolor
>>  1504 825 M
>> -[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs \(Threads\) Looking Up The Cat)]
>> +[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs Looking Up The Cat)]
>>  ] -33.3 MCshow
>>  LTb
>>  % Begin plot #1
>> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatonly.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatonly.eps
>> index 45e21f40..125c303a 100644
>> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatonly.eps
>> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatonly.eps
>> @@ -1,7 +1,7 @@
>>  %!PS-Adobe-2.0
>>  %%Title: zoocatonly.eps
>>  %%Creator: gnuplot 5.2 patchlevel 2
>> -%%CreationDate: Mon Dec 28 16:51:52 2020
>> +%%CreationDate: Sat Feb 20 18:10:20 2021
>>  %%DocumentFonts: (atend)
>>  %%BoundingBox: 50 50 302 410
>>  %%Orientation: Portrait
>> @@ -1872,7 +1872,7 @@ SDict begin [
>>    /Creator (gnuplot 5.2 patchlevel 2)
>>  %  /Producer (gnuplot)
>>  %  /Keywords ()
>> -  /CreationDate (Mon Dec 28 16:51:52 2020)
>> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>>    /DOCINFO pdfmark
>>  end
>>  } ifelse
>> @@ -2300,7 +2300,7 @@ grestore
>>  LTb
>>  LCb setrgbcolor
>>  1504 825 M
>> -[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs \(Threads\) Looking Up The Cat)]
>> +[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs Looking Up The Cat)]
>>  ] -33.3 MCshow
>>  LTb
>>  % Begin plot #1
>> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatonlylin.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatonlylin.eps
>> index fc9a0eff..b6e71ce6 100644
>> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatonlylin.eps
>> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatonlylin.eps
>> @@ -1,7 +1,7 @@
>>  %!PS-Adobe-2.0
>>  %%Title: zoocatonlylin.eps
>>  %%Creator: gnuplot 5.2 patchlevel 2
>> -%%CreationDate: Mon Dec 28 16:51:52 2020
>> +%%CreationDate: Sat Feb 20 18:10:20 2021
>>  %%DocumentFonts: (atend)
>>  %%BoundingBox: 50 50 302 410
>>  %%Orientation: Portrait
>> @@ -1872,7 +1872,7 @@ SDict begin [
>>    /Creator (gnuplot 5.2 patchlevel 2)
>>  %  /Producer (gnuplot)
>>  %  /Keywords ()
>> -  /CreationDate (Mon Dec 28 16:51:52 2020)
>> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>>    /DOCINFO pdfmark
>>  end
>>  } ifelse
>> @@ -2162,7 +2162,7 @@ grestore
>>  LTb
>>  LCb setrgbcolor
>>  1504 825 M
>> -[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs \(Threads\) Looking Up The Cat)]
>> +[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs Looking Up The Cat)]
>>  ] -33.3 MCshow
>>  LTb
>>  % Begin plot #1
>> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu-unsync.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu-unsync.eps
>> index 0270bf06..35f16b19 100644
>> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu-unsync.eps
>> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu-unsync.eps
>> @@ -1,7 +1,7 @@
>>  %!PS-Adobe-2.0
>>  %%Title: zoocpu-unsync.eps
>>  %%Creator: gnuplot 5.2 patchlevel 2
>> -%%CreationDate: Mon Dec 28 16:51:52 2020
>> +%%CreationDate: Sat Feb 20 18:10:20 2021
>>  %%DocumentFonts: (atend)
>>  %%BoundingBox: 50 50 302 410
>>  %%Orientation: Portrait
>> @@ -1872,7 +1872,7 @@ SDict begin [
>>    /Creator (gnuplot 5.2 patchlevel 2)
>>  %  /Producer (gnuplot)
>>  %  /Keywords ()
>> -  /CreationDate (Mon Dec 28 16:51:52 2020)
>> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>>    /DOCINFO pdfmark
>>  end
>>  } ifelse
>> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu-unsynclin.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu-unsynclin.eps
>> index 7fdcc108..303b88ab 100644
>> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu-unsynclin.eps
>> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu-unsynclin.eps
>> @@ -1,7 +1,7 @@
>>  %!PS-Adobe-2.0
>>  %%Title: zoocpu-unsynclin.eps
>>  %%Creator: gnuplot 5.2 patchlevel 2
>> -%%CreationDate: Mon Dec 28 16:51:52 2020
>> +%%CreationDate: Sat Feb 20 18:10:20 2021
>>  %%DocumentFonts: (atend)
>>  %%BoundingBox: 50 50 302 410
>>  %%Orientation: Portrait
>> @@ -1872,7 +1872,7 @@ SDict begin [
>>    /Creator (gnuplot 5.2 patchlevel 2)
>>  %  /Producer (gnuplot)
>>  %  /Keywords ()
>> -  /CreationDate (Mon Dec 28 16:51:52 2020)
>> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>>    /DOCINFO pdfmark
>>  end
>>  } ifelse
>> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu.eps
>> index 0f149c49..b6812ecc 100644
>> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu.eps
>> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu.eps
>> @@ -1,7 +1,7 @@
>>  %!PS-Adobe-2.0
>>  %%Title: zoocpu.eps
>>  %%Creator: gnuplot 5.2 patchlevel 2
>> -%%CreationDate: Mon Dec 28 16:51:52 2020
>> +%%CreationDate: Sat Feb 20 18:10:20 2021
>>  %%DocumentFonts: (atend)
>>  %%BoundingBox: 50 50 302 410
>>  %%Orientation: Portrait
>> @@ -1872,7 +1872,7 @@ SDict begin [
>>    /Creator (gnuplot 5.2 patchlevel 2)
>>  %  /Producer (gnuplot)
>>  %  /Keywords ()
>> -  /CreationDate (Mon Dec 28 16:51:52 2020)
>> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>>    /DOCINFO pdfmark
>>  end
>>  } ifelse
>> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktlin.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktlin.eps
>> index 399f68ff..f6b2d631 100644
>> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktlin.eps
>> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktlin.eps
>> @@ -1,7 +1,7 @@
>>  %!PS-Adobe-2.0
>>  %%Title: zoocpubktlin.eps
>>  %%Creator: gnuplot 5.2 patchlevel 2
>> -%%CreationDate: Mon Dec 28 16:51:52 2020
>> +%%CreationDate: Sat Feb 20 18:10:20 2021
>>  %%DocumentFonts: (atend)
>>  %%BoundingBox: 50 50 302 410
>>  %%Orientation: Portrait
>> @@ -1872,7 +1872,7 @@ SDict begin [
>>    /Creator (gnuplot 5.2 patchlevel 2)
>>  %  /Producer (gnuplot)
>>  %  /Keywords ()
>> -  /CreationDate (Mon Dec 28 16:51:52 2020)
>> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>>    /DOCINFO pdfmark
>>  end
>>  } ifelse
>> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktlin8.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktlin8.eps
>> index c5df471d..2644df6c 100644
>> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktlin8.eps
>> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktlin8.eps
>> @@ -1,7 +1,7 @@
>>  %!PS-Adobe-2.0
>>  %%Title: zoocpubktlin8.eps
>>  %%Creator: gnuplot 5.2 patchlevel 2
>> -%%CreationDate: Mon Dec 28 16:51:52 2020
>> +%%CreationDate: Sat Feb 20 18:10:20 2021
>>  %%DocumentFonts: (atend)
>>  %%BoundingBox: 50 50 302 410
>>  %%Orientation: Portrait
>> @@ -1872,7 +1872,7 @@ SDict begin [
>>    /Creator (gnuplot 5.2 patchlevel 2)
>>  %  /Producer (gnuplot)
>>  %  /Keywords ()
>> -  /CreationDate (Mon Dec 28 16:51:52 2020)
>> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>>    /DOCINFO pdfmark
>>  end
>>  } ifelse
>> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktsizelin.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktsizelin.eps
>> index cf21c090..cd8f341a 100644
>> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktsizelin.eps
>> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktsizelin.eps
>> @@ -1,7 +1,7 @@
>>  %!PS-Adobe-2.0
>>  %%Title: zoocpubktsizelin.eps
>>  %%Creator: gnuplot 5.2 patchlevel 2
>> -%%CreationDate: Mon Dec 28 16:51:52 2020
>> +%%CreationDate: Sat Feb 20 18:10:20 2021
>>  %%DocumentFonts: (atend)
>>  %%BoundingBox: 50 50 302 410
>>  %%Orientation: Portrait
>> @@ -1872,7 +1872,7 @@ SDict begin [
>>    /Creator (gnuplot 5.2 patchlevel 2)
>>  %  /Producer (gnuplot)
>>  %  /Keywords ()
>> -  /CreationDate (Mon Dec 28 16:51:52 2020)
>> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>>    /DOCINFO pdfmark
>>  end
>>  } ifelse
>> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulin.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulin.eps
>> index b4e40dbd..9cfab2a7 100644
>> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulin.eps
>> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulin.eps
>> @@ -1,7 +1,7 @@
>>  %!PS-Adobe-2.0
>>  %%Title: zoocpulin.eps
>>  %%Creator: gnuplot 5.2 patchlevel 2
>> -%%CreationDate: Mon Dec 28 16:51:52 2020
>> +%%CreationDate: Sat Feb 20 18:10:20 2021
>>  %%DocumentFonts: (atend)
>>  %%BoundingBox: 50 50 302 410
>>  %%Orientation: Portrait
>> @@ -1872,7 +1872,7 @@ SDict begin [
>>    /Creator (gnuplot 5.2 patchlevel 2)
>>  %  /Producer (gnuplot)
>>  %  /Keywords ()
>> -  /CreationDate (Mon Dec 28 16:51:52 2020)
>> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>>    /DOCINFO pdfmark
>>  end
>>  } ifelse
>> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulinqsbr.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulinqsbr.eps
>> index 1e2c121d..a2dee4c4 100644
>> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulinqsbr.eps
>> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulinqsbr.eps
>> @@ -1,7 +1,7 @@
>>  %!PS-Adobe-2.0
>>  %%Title: zoocpulinqsbr.eps
>>  %%Creator: gnuplot 5.2 patchlevel 2
>> -%%CreationDate: Mon Dec 28 16:51:52 2020
>> +%%CreationDate: Sat Feb 20 18:10:20 2021
>>  %%DocumentFonts: (atend)
>>  %%BoundingBox: 50 50 302 410
>>  %%Orientation: Portrait
>> @@ -1872,7 +1872,7 @@ SDict begin [
>>    /Creator (gnuplot 5.2 patchlevel 2)
>>  %  /Producer (gnuplot)
>>  %  /Keywords ()
>> -  /CreationDate (Mon Dec 28 16:51:52 2020)
>> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>>    /DOCINFO pdfmark
>>  end
>>  } ifelse
>> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulinqsbrunsync.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulinqsbrunsync.eps
>> index 593a8f1e..1f452a23 100644
>> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulinqsbrunsync.eps
>> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulinqsbrunsync.eps
>> @@ -1,7 +1,7 @@
>>  %!PS-Adobe-2.0
>>  %%Title: zoocpulinqsbrunsync.eps
>>  %%Creator: gnuplot 5.2 patchlevel 2
>> -%%CreationDate: Mon Dec 28 16:51:52 2020
>> +%%CreationDate: Sat Feb 20 18:10:20 2021
>>  %%DocumentFonts: (atend)
>>  %%BoundingBox: 50 50 302 410
>>  %%Orientation: Portrait
>> @@ -1872,7 +1872,7 @@ SDict begin [
>>    /Creator (gnuplot 5.2 patchlevel 2)
>>  %  /Producer (gnuplot)
>>  %  /Keywords ()
>> -  /CreationDate (Mon Dec 28 16:51:52 2020)
>> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>>    /DOCINFO pdfmark
>>  end
>>  } ifelse
>> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdate.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdate.eps
>> index 1c091c99..ac767eff 100644
>> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdate.eps
>> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdate.eps
>> @@ -1,7 +1,7 @@
>>  %!PS-Adobe-2.0
>>  %%Title: zooupdate.eps
>>  %%Creator: gnuplot 5.2 patchlevel 2
>> -%%CreationDate: Mon Dec 28 16:51:52 2020
>> +%%CreationDate: Sat Feb 20 18:10:20 2021
>>  %%DocumentFonts: (atend)
>>  %%BoundingBox: 50 50 302 410
>>  %%Orientation: Portrait
>> @@ -1872,7 +1872,7 @@ SDict begin [
>>    /Creator (gnuplot 5.2 patchlevel 2)
>>  %  /Producer (gnuplot)
>>  %  /Keywords ()
>> -  /CreationDate (Mon Dec 28 16:51:52 2020)
>> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>>    /DOCINFO pdfmark
>>  end
>>  } ifelse
>> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdatelu.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdatelu.eps
>> index 6c560af7..8def236a 100644
>> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdatelu.eps
>> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdatelu.eps
>> @@ -1,7 +1,7 @@
>>  %!PS-Adobe-2.0
>>  %%Title: zooupdatelu.eps
>>  %%Creator: gnuplot 5.2 patchlevel 2
>> -%%CreationDate: Mon Dec 28 16:51:52 2020
>> +%%CreationDate: Sat Feb 20 18:10:20 2021
>>  %%DocumentFonts: (atend)
>>  %%BoundingBox: 50 50 302 410
>>  %%Orientation: Portrait
>> @@ -1872,7 +1872,7 @@ SDict begin [
>>    /Creator (gnuplot 5.2 patchlevel 2)
>>  %  /Producer (gnuplot)
>>  %  /Keywords ()
>> -  /CreationDate (Mon Dec 28 16:51:52 2020)
>> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>>    /DOCINFO pdfmark
>>  end
>>  } ifelse
>> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdatelulin.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdatelulin.eps
>> index 46172fb6..34e1f5d2 100644
>> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdatelulin.eps
>> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdatelulin.eps
>> @@ -1,7 +1,7 @@
>>  %!PS-Adobe-2.0
>>  %%Title: zooupdatelulin.eps
>>  %%Creator: gnuplot 5.2 patchlevel 2
>> -%%CreationDate: Mon Dec 28 16:51:52 2020
>> +%%CreationDate: Sat Feb 20 18:10:20 2021
>>  %%DocumentFonts: (atend)
>>  %%BoundingBox: 50 50 302 410
>>  %%Orientation: Portrait
>> @@ -1872,7 +1872,7 @@ SDict begin [
>>    /Creator (gnuplot 5.2 patchlevel 2)
>>  %  /Producer (gnuplot)
>>  %  /Keywords ()
>> -  /CreationDate (Mon Dec 28 16:51:52 2020)
>> +  /CreationDate (Sat Feb 20 18:10:20 2021)
>>    /DOCINFO pdfmark
>>  end
>>  } ifelse
>> -- 
>> 2.17.1
>>
>>

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

* Re: [PATCH -perfbook 3/3] datastruct: Shorten X label of cat-only lookup performance plot
  2021-02-21 22:28     ` Akira Yokosawa
@ 2021-02-22 23:26       ` Paul E. McKenney
  0 siblings, 0 replies; 6+ messages in thread
From: Paul E. McKenney @ 2021-02-22 23:26 UTC (permalink / raw)
  To: Akira Yokosawa; +Cc: perfbook

On Mon, Feb 22, 2021 at 07:28:40AM +0900, Akira Yokosawa wrote:
> On Sun, 21 Feb 2021 14:02:00 -0800, Paul E. McKenney wrote:
> > On Sun, Feb 21, 2021 at 12:20:09AM +0900, Akira Yokosawa wrote:
> >> Removing "(Threads)" allows these labels to fit the the plot-area.
> >>
> >> Plots in the other subdirectories are not touched.
> >>
> >> Signed-off-by: Akira Yokosawa <akiyks@gmail.com>
> > 
> > I took the first two of this series as part of -rc8, but the correct
> > way to fix this one would be to change the plots.sh scripts that
> > generated the plot.
> 
> Well, that's what I did in patch 3/3.
> 
> >>  .../datastruct/hash/data/hps.perf.2020.11.26a/plots.sh | 10 +++++-----
> 
> See?  ;-)

I clearly should have waited until today to look your series over!

Please accept my apologies for my confusion.  I have applied and
pushed this patch as well, thank you!

							Thanx, Paul

>         Thanks, Akira
> 
> >                      I -think- that all of these were generated by
> > CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/plots.sh, but it
> > would be good to double-check.
> > 
> > If so, edit that plots.sh file to suit, run it, and then rebuild
> > the book.  That way, these changes don't get overwritten the next
> > time I collect new data.  Which admittedly might be quite some time, 
> > but still...  ;-)
> > 
> > 							Thanx, Paul
> > 
> >> ---
> >>  .../hash/data/hps.perf.2020.11.26a/perftest.eps        |  4 ++--
> >>  .../hash/data/hps.perf.2020.11.26a/perftestlin.eps     |  4 ++--
> >>  .../datastruct/hash/data/hps.perf.2020.11.26a/plots.sh | 10 +++++-----
> >>  .../data/hps.perf.2020.11.26a/zoocatall-unsync.eps     |  6 +++---
> >>  .../hash/data/hps.perf.2020.11.26a/zoocatall.eps       |  6 +++---
> >>  .../hash/data/hps.perf.2020.11.26a/zoocatalllin.eps    |  6 +++---
> >>  .../hash/data/hps.perf.2020.11.26a/zoocatonly.eps      |  6 +++---
> >>  .../hash/data/hps.perf.2020.11.26a/zoocatonlylin.eps   |  6 +++---
> >>  .../hash/data/hps.perf.2020.11.26a/zoocpu-unsync.eps   |  4 ++--
> >>  .../data/hps.perf.2020.11.26a/zoocpu-unsynclin.eps     |  4 ++--
> >>  .../hash/data/hps.perf.2020.11.26a/zoocpu.eps          |  4 ++--
> >>  .../hash/data/hps.perf.2020.11.26a/zoocpubktlin.eps    |  4 ++--
> >>  .../hash/data/hps.perf.2020.11.26a/zoocpubktlin8.eps   |  4 ++--
> >>  .../data/hps.perf.2020.11.26a/zoocpubktsizelin.eps     |  4 ++--
> >>  .../hash/data/hps.perf.2020.11.26a/zoocpulin.eps       |  4 ++--
> >>  .../hash/data/hps.perf.2020.11.26a/zoocpulinqsbr.eps   |  4 ++--
> >>  .../data/hps.perf.2020.11.26a/zoocpulinqsbrunsync.eps  |  4 ++--
> >>  .../hash/data/hps.perf.2020.11.26a/zooupdate.eps       |  4 ++--
> >>  .../hash/data/hps.perf.2020.11.26a/zooupdatelu.eps     |  4 ++--
> >>  .../hash/data/hps.perf.2020.11.26a/zooupdatelulin.eps  |  4 ++--
> >>  20 files changed, 48 insertions(+), 48 deletions(-)
> >>
> >> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/perftest.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/perftest.eps
> >> index 89aba0fb..cdec71fa 100644
> >> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/perftest.eps
> >> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/perftest.eps
> >> @@ -1,7 +1,7 @@
> >>  %!PS-Adobe-2.0
> >>  %%Title: perftest.eps
> >>  %%Creator: gnuplot 5.2 patchlevel 2
> >> -%%CreationDate: Mon Dec 28 16:51:52 2020
> >> +%%CreationDate: Sat Feb 20 18:10:20 2021
> >>  %%DocumentFonts: (atend)
> >>  %%BoundingBox: 50 50 302 410
> >>  %%Orientation: Portrait
> >> @@ -1872,7 +1872,7 @@ SDict begin [
> >>    /Creator (gnuplot 5.2 patchlevel 2)
> >>  %  /Producer (gnuplot)
> >>  %  /Keywords ()
> >> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> >> +  /CreationDate (Sat Feb 20 18:10:20 2021)
> >>    /DOCINFO pdfmark
> >>  end
> >>  } ifelse
> >> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/perftestlin.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/perftestlin.eps
> >> index 2c4be05e..94f3529a 100644
> >> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/perftestlin.eps
> >> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/perftestlin.eps
> >> @@ -1,7 +1,7 @@
> >>  %!PS-Adobe-2.0
> >>  %%Title: perftestlin.eps
> >>  %%Creator: gnuplot 5.2 patchlevel 2
> >> -%%CreationDate: Mon Dec 28 16:51:52 2020
> >> +%%CreationDate: Sat Feb 20 18:10:20 2021
> >>  %%DocumentFonts: (atend)
> >>  %%BoundingBox: 50 50 302 410
> >>  %%Orientation: Portrait
> >> @@ -1872,7 +1872,7 @@ SDict begin [
> >>    /Creator (gnuplot 5.2 patchlevel 2)
> >>  %  /Producer (gnuplot)
> >>  %  /Keywords ()
> >> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> >> +  /CreationDate (Sat Feb 20 18:10:20 2021)
> >>    /DOCINFO pdfmark
> >>  end
> >>  } ifelse
> >> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/plots.sh b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/plots.sh
> >> index 5d6ab75a..11b7d4d3 100644
> >> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/plots.sh
> >> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/plots.sh
> >> @@ -236,7 +236,7 @@ gnuplot << ---EOF---
> >>  set term postscript portrait ${fontsize} enhanced "NimbusSanL-Regu" fontfile "${font}fonts/uhvr8a.pfb"
> >>  set size square ${plotsize},${plotsize}
> >>  set output "zoocatall.eps"
> >> -set xlabel "Number of CPUs (Threads) Looking Up The Cat"
> >> +set xlabel "Number of CPUs Looking Up The Cat"
> >>  set ylabel "Total Lookups per Millisecond"
> >>  set logscale xy
> >>  #set yrange [1:10000]
> >> @@ -254,7 +254,7 @@ gnuplot << ---EOF---
> >>  set term postscript portrait ${fontsize} enhanced "NimbusSanL-Regu" fontfile "${font}fonts/uhvr8a.pfb"
> >>  set size square ${plotsize},${plotsize}
> >>  set output "zoocatalllin.eps"
> >> -set xlabel "Number of CPUs (Threads) Looking Up The Cat"
> >> +set xlabel "Number of CPUs Looking Up The Cat"
> >>  set ylabel "Total Lookups per Millisecond"
> >>  #set logscale xy
> >>  #set yrange [1:10000]
> >> @@ -272,7 +272,7 @@ gnuplot << ---EOF---
> >>  set term postscript portrait ${fontsize} enhanced "NimbusSanL-Regu" fontfile "${font}fonts/uhvr8a.pfb"
> >>  set size square ${plotsize},${plotsize}
> >>  set output "zoocatall-unsync.eps"
> >> -set xlabel "Number of CPUs (Threads) Looking Up The Cat"
> >> +set xlabel "Number of CPUs Looking Up The Cat"
> >>  set ylabel "Total Lookups per Millisecond"
> >>  set logscale xy
> >>  #set yrange [1:10000]
> >> @@ -291,7 +291,7 @@ gnuplot << ---EOF---
> >>  set term postscript portrait ${fontsize} enhanced "NimbusSanL-Regu" fontfile "${font}fonts/uhvr8a.pfb"
> >>  set size square ${plotsize},${plotsize}
> >>  set output "zoocatonly.eps"
> >> -set xlabel "Number of CPUs (Threads) Looking Up The Cat"
> >> +set xlabel "Number of CPUs Looking Up The Cat"
> >>  set ylabel "Cat Lookups per Millisecond"
> >>  set logscale xy
> >>  #set yrange [1:10000]
> >> @@ -309,7 +309,7 @@ gnuplot << ---EOF---
> >>  set term postscript portrait ${fontsize} enhanced "NimbusSanL-Regu" fontfile "${font}fonts/uhvr8a.pfb"
> >>  set size square ${plotsize},${plotsize}
> >>  set output "zoocatonlylin.eps"
> >> -set xlabel "Number of CPUs (Threads) Looking Up The Cat"
> >> +set xlabel "Number of CPUs Looking Up The Cat"
> >>  set ylabel "Cat Lookups per Millisecond"
> >>  #set logscale xy
> >>  #set yrange [1:10000]
> >> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatall-unsync.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatall-unsync.eps
> >> index 3de41316..13fe8753 100644
> >> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatall-unsync.eps
> >> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatall-unsync.eps
> >> @@ -1,7 +1,7 @@
> >>  %!PS-Adobe-2.0
> >>  %%Title: zoocatall-unsync.eps
> >>  %%Creator: gnuplot 5.2 patchlevel 2
> >> -%%CreationDate: Mon Dec 28 16:51:52 2020
> >> +%%CreationDate: Sat Feb 20 18:10:20 2021
> >>  %%DocumentFonts: (atend)
> >>  %%BoundingBox: 50 50 302 410
> >>  %%Orientation: Portrait
> >> @@ -1872,7 +1872,7 @@ SDict begin [
> >>    /Creator (gnuplot 5.2 patchlevel 2)
> >>  %  /Producer (gnuplot)
> >>  %  /Keywords ()
> >> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> >> +  /CreationDate (Sat Feb 20 18:10:20 2021)
> >>    /DOCINFO pdfmark
> >>  end
> >>  } ifelse
> >> @@ -2218,7 +2218,7 @@ grestore
> >>  LTb
> >>  LCb setrgbcolor
> >>  1504 825 M
> >> -[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs \(Threads\) Looking Up The Cat)]
> >> +[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs Looking Up The Cat)]
> >>  ] -33.3 MCshow
> >>  LTb
> >>  % Begin plot #1
> >> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatall.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatall.eps
> >> index a6295c11..86b97f0a 100644
> >> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatall.eps
> >> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatall.eps
> >> @@ -1,7 +1,7 @@
> >>  %!PS-Adobe-2.0
> >>  %%Title: zoocatall.eps
> >>  %%Creator: gnuplot 5.2 patchlevel 2
> >> -%%CreationDate: Mon Dec 28 16:51:52 2020
> >> +%%CreationDate: Sat Feb 20 18:10:20 2021
> >>  %%DocumentFonts: (atend)
> >>  %%BoundingBox: 50 50 302 410
> >>  %%Orientation: Portrait
> >> @@ -1872,7 +1872,7 @@ SDict begin [
> >>    /Creator (gnuplot 5.2 patchlevel 2)
> >>  %  /Producer (gnuplot)
> >>  %  /Keywords ()
> >> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> >> +  /CreationDate (Sat Feb 20 18:10:20 2021)
> >>    /DOCINFO pdfmark
> >>  end
> >>  } ifelse
> >> @@ -2214,7 +2214,7 @@ grestore
> >>  LTb
> >>  LCb setrgbcolor
> >>  1504 825 M
> >> -[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs \(Threads\) Looking Up The Cat)]
> >> +[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs Looking Up The Cat)]
> >>  ] -33.3 MCshow
> >>  LTb
> >>  % Begin plot #1
> >> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatalllin.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatalllin.eps
> >> index 57c32e73..739cec6a 100644
> >> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatalllin.eps
> >> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatalllin.eps
> >> @@ -1,7 +1,7 @@
> >>  %!PS-Adobe-2.0
> >>  %%Title: zoocatalllin.eps
> >>  %%Creator: gnuplot 5.2 patchlevel 2
> >> -%%CreationDate: Mon Dec 28 16:51:52 2020
> >> +%%CreationDate: Sat Feb 20 18:10:20 2021
> >>  %%DocumentFonts: (atend)
> >>  %%BoundingBox: 50 50 302 410
> >>  %%Orientation: Portrait
> >> @@ -1872,7 +1872,7 @@ SDict begin [
> >>    /Creator (gnuplot 5.2 patchlevel 2)
> >>  %  /Producer (gnuplot)
> >>  %  /Keywords ()
> >> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> >> +  /CreationDate (Sat Feb 20 18:10:20 2021)
> >>    /DOCINFO pdfmark
> >>  end
> >>  } ifelse
> >> @@ -2166,7 +2166,7 @@ grestore
> >>  LTb
> >>  LCb setrgbcolor
> >>  1504 825 M
> >> -[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs \(Threads\) Looking Up The Cat)]
> >> +[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs Looking Up The Cat)]
> >>  ] -33.3 MCshow
> >>  LTb
> >>  % Begin plot #1
> >> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatonly.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatonly.eps
> >> index 45e21f40..125c303a 100644
> >> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatonly.eps
> >> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatonly.eps
> >> @@ -1,7 +1,7 @@
> >>  %!PS-Adobe-2.0
> >>  %%Title: zoocatonly.eps
> >>  %%Creator: gnuplot 5.2 patchlevel 2
> >> -%%CreationDate: Mon Dec 28 16:51:52 2020
> >> +%%CreationDate: Sat Feb 20 18:10:20 2021
> >>  %%DocumentFonts: (atend)
> >>  %%BoundingBox: 50 50 302 410
> >>  %%Orientation: Portrait
> >> @@ -1872,7 +1872,7 @@ SDict begin [
> >>    /Creator (gnuplot 5.2 patchlevel 2)
> >>  %  /Producer (gnuplot)
> >>  %  /Keywords ()
> >> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> >> +  /CreationDate (Sat Feb 20 18:10:20 2021)
> >>    /DOCINFO pdfmark
> >>  end
> >>  } ifelse
> >> @@ -2300,7 +2300,7 @@ grestore
> >>  LTb
> >>  LCb setrgbcolor
> >>  1504 825 M
> >> -[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs \(Threads\) Looking Up The Cat)]
> >> +[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs Looking Up The Cat)]
> >>  ] -33.3 MCshow
> >>  LTb
> >>  % Begin plot #1
> >> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatonlylin.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatonlylin.eps
> >> index fc9a0eff..b6e71ce6 100644
> >> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatonlylin.eps
> >> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocatonlylin.eps
> >> @@ -1,7 +1,7 @@
> >>  %!PS-Adobe-2.0
> >>  %%Title: zoocatonlylin.eps
> >>  %%Creator: gnuplot 5.2 patchlevel 2
> >> -%%CreationDate: Mon Dec 28 16:51:52 2020
> >> +%%CreationDate: Sat Feb 20 18:10:20 2021
> >>  %%DocumentFonts: (atend)
> >>  %%BoundingBox: 50 50 302 410
> >>  %%Orientation: Portrait
> >> @@ -1872,7 +1872,7 @@ SDict begin [
> >>    /Creator (gnuplot 5.2 patchlevel 2)
> >>  %  /Producer (gnuplot)
> >>  %  /Keywords ()
> >> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> >> +  /CreationDate (Sat Feb 20 18:10:20 2021)
> >>    /DOCINFO pdfmark
> >>  end
> >>  } ifelse
> >> @@ -2162,7 +2162,7 @@ grestore
> >>  LTb
> >>  LCb setrgbcolor
> >>  1504 825 M
> >> -[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs \(Threads\) Looking Up The Cat)]
> >> +[ [(NimbusSanL-Regu) 100.0 0.0 true true 0 (Number of CPUs Looking Up The Cat)]
> >>  ] -33.3 MCshow
> >>  LTb
> >>  % Begin plot #1
> >> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu-unsync.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu-unsync.eps
> >> index 0270bf06..35f16b19 100644
> >> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu-unsync.eps
> >> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu-unsync.eps
> >> @@ -1,7 +1,7 @@
> >>  %!PS-Adobe-2.0
> >>  %%Title: zoocpu-unsync.eps
> >>  %%Creator: gnuplot 5.2 patchlevel 2
> >> -%%CreationDate: Mon Dec 28 16:51:52 2020
> >> +%%CreationDate: Sat Feb 20 18:10:20 2021
> >>  %%DocumentFonts: (atend)
> >>  %%BoundingBox: 50 50 302 410
> >>  %%Orientation: Portrait
> >> @@ -1872,7 +1872,7 @@ SDict begin [
> >>    /Creator (gnuplot 5.2 patchlevel 2)
> >>  %  /Producer (gnuplot)
> >>  %  /Keywords ()
> >> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> >> +  /CreationDate (Sat Feb 20 18:10:20 2021)
> >>    /DOCINFO pdfmark
> >>  end
> >>  } ifelse
> >> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu-unsynclin.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu-unsynclin.eps
> >> index 7fdcc108..303b88ab 100644
> >> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu-unsynclin.eps
> >> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu-unsynclin.eps
> >> @@ -1,7 +1,7 @@
> >>  %!PS-Adobe-2.0
> >>  %%Title: zoocpu-unsynclin.eps
> >>  %%Creator: gnuplot 5.2 patchlevel 2
> >> -%%CreationDate: Mon Dec 28 16:51:52 2020
> >> +%%CreationDate: Sat Feb 20 18:10:20 2021
> >>  %%DocumentFonts: (atend)
> >>  %%BoundingBox: 50 50 302 410
> >>  %%Orientation: Portrait
> >> @@ -1872,7 +1872,7 @@ SDict begin [
> >>    /Creator (gnuplot 5.2 patchlevel 2)
> >>  %  /Producer (gnuplot)
> >>  %  /Keywords ()
> >> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> >> +  /CreationDate (Sat Feb 20 18:10:20 2021)
> >>    /DOCINFO pdfmark
> >>  end
> >>  } ifelse
> >> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu.eps
> >> index 0f149c49..b6812ecc 100644
> >> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu.eps
> >> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpu.eps
> >> @@ -1,7 +1,7 @@
> >>  %!PS-Adobe-2.0
> >>  %%Title: zoocpu.eps
> >>  %%Creator: gnuplot 5.2 patchlevel 2
> >> -%%CreationDate: Mon Dec 28 16:51:52 2020
> >> +%%CreationDate: Sat Feb 20 18:10:20 2021
> >>  %%DocumentFonts: (atend)
> >>  %%BoundingBox: 50 50 302 410
> >>  %%Orientation: Portrait
> >> @@ -1872,7 +1872,7 @@ SDict begin [
> >>    /Creator (gnuplot 5.2 patchlevel 2)
> >>  %  /Producer (gnuplot)
> >>  %  /Keywords ()
> >> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> >> +  /CreationDate (Sat Feb 20 18:10:20 2021)
> >>    /DOCINFO pdfmark
> >>  end
> >>  } ifelse
> >> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktlin.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktlin.eps
> >> index 399f68ff..f6b2d631 100644
> >> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktlin.eps
> >> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktlin.eps
> >> @@ -1,7 +1,7 @@
> >>  %!PS-Adobe-2.0
> >>  %%Title: zoocpubktlin.eps
> >>  %%Creator: gnuplot 5.2 patchlevel 2
> >> -%%CreationDate: Mon Dec 28 16:51:52 2020
> >> +%%CreationDate: Sat Feb 20 18:10:20 2021
> >>  %%DocumentFonts: (atend)
> >>  %%BoundingBox: 50 50 302 410
> >>  %%Orientation: Portrait
> >> @@ -1872,7 +1872,7 @@ SDict begin [
> >>    /Creator (gnuplot 5.2 patchlevel 2)
> >>  %  /Producer (gnuplot)
> >>  %  /Keywords ()
> >> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> >> +  /CreationDate (Sat Feb 20 18:10:20 2021)
> >>    /DOCINFO pdfmark
> >>  end
> >>  } ifelse
> >> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktlin8.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktlin8.eps
> >> index c5df471d..2644df6c 100644
> >> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktlin8.eps
> >> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktlin8.eps
> >> @@ -1,7 +1,7 @@
> >>  %!PS-Adobe-2.0
> >>  %%Title: zoocpubktlin8.eps
> >>  %%Creator: gnuplot 5.2 patchlevel 2
> >> -%%CreationDate: Mon Dec 28 16:51:52 2020
> >> +%%CreationDate: Sat Feb 20 18:10:20 2021
> >>  %%DocumentFonts: (atend)
> >>  %%BoundingBox: 50 50 302 410
> >>  %%Orientation: Portrait
> >> @@ -1872,7 +1872,7 @@ SDict begin [
> >>    /Creator (gnuplot 5.2 patchlevel 2)
> >>  %  /Producer (gnuplot)
> >>  %  /Keywords ()
> >> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> >> +  /CreationDate (Sat Feb 20 18:10:20 2021)
> >>    /DOCINFO pdfmark
> >>  end
> >>  } ifelse
> >> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktsizelin.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktsizelin.eps
> >> index cf21c090..cd8f341a 100644
> >> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktsizelin.eps
> >> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpubktsizelin.eps
> >> @@ -1,7 +1,7 @@
> >>  %!PS-Adobe-2.0
> >>  %%Title: zoocpubktsizelin.eps
> >>  %%Creator: gnuplot 5.2 patchlevel 2
> >> -%%CreationDate: Mon Dec 28 16:51:52 2020
> >> +%%CreationDate: Sat Feb 20 18:10:20 2021
> >>  %%DocumentFonts: (atend)
> >>  %%BoundingBox: 50 50 302 410
> >>  %%Orientation: Portrait
> >> @@ -1872,7 +1872,7 @@ SDict begin [
> >>    /Creator (gnuplot 5.2 patchlevel 2)
> >>  %  /Producer (gnuplot)
> >>  %  /Keywords ()
> >> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> >> +  /CreationDate (Sat Feb 20 18:10:20 2021)
> >>    /DOCINFO pdfmark
> >>  end
> >>  } ifelse
> >> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulin.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulin.eps
> >> index b4e40dbd..9cfab2a7 100644
> >> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulin.eps
> >> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulin.eps
> >> @@ -1,7 +1,7 @@
> >>  %!PS-Adobe-2.0
> >>  %%Title: zoocpulin.eps
> >>  %%Creator: gnuplot 5.2 patchlevel 2
> >> -%%CreationDate: Mon Dec 28 16:51:52 2020
> >> +%%CreationDate: Sat Feb 20 18:10:20 2021
> >>  %%DocumentFonts: (atend)
> >>  %%BoundingBox: 50 50 302 410
> >>  %%Orientation: Portrait
> >> @@ -1872,7 +1872,7 @@ SDict begin [
> >>    /Creator (gnuplot 5.2 patchlevel 2)
> >>  %  /Producer (gnuplot)
> >>  %  /Keywords ()
> >> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> >> +  /CreationDate (Sat Feb 20 18:10:20 2021)
> >>    /DOCINFO pdfmark
> >>  end
> >>  } ifelse
> >> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulinqsbr.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulinqsbr.eps
> >> index 1e2c121d..a2dee4c4 100644
> >> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulinqsbr.eps
> >> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulinqsbr.eps
> >> @@ -1,7 +1,7 @@
> >>  %!PS-Adobe-2.0
> >>  %%Title: zoocpulinqsbr.eps
> >>  %%Creator: gnuplot 5.2 patchlevel 2
> >> -%%CreationDate: Mon Dec 28 16:51:52 2020
> >> +%%CreationDate: Sat Feb 20 18:10:20 2021
> >>  %%DocumentFonts: (atend)
> >>  %%BoundingBox: 50 50 302 410
> >>  %%Orientation: Portrait
> >> @@ -1872,7 +1872,7 @@ SDict begin [
> >>    /Creator (gnuplot 5.2 patchlevel 2)
> >>  %  /Producer (gnuplot)
> >>  %  /Keywords ()
> >> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> >> +  /CreationDate (Sat Feb 20 18:10:20 2021)
> >>    /DOCINFO pdfmark
> >>  end
> >>  } ifelse
> >> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulinqsbrunsync.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulinqsbrunsync.eps
> >> index 593a8f1e..1f452a23 100644
> >> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulinqsbrunsync.eps
> >> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zoocpulinqsbrunsync.eps
> >> @@ -1,7 +1,7 @@
> >>  %!PS-Adobe-2.0
> >>  %%Title: zoocpulinqsbrunsync.eps
> >>  %%Creator: gnuplot 5.2 patchlevel 2
> >> -%%CreationDate: Mon Dec 28 16:51:52 2020
> >> +%%CreationDate: Sat Feb 20 18:10:20 2021
> >>  %%DocumentFonts: (atend)
> >>  %%BoundingBox: 50 50 302 410
> >>  %%Orientation: Portrait
> >> @@ -1872,7 +1872,7 @@ SDict begin [
> >>    /Creator (gnuplot 5.2 patchlevel 2)
> >>  %  /Producer (gnuplot)
> >>  %  /Keywords ()
> >> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> >> +  /CreationDate (Sat Feb 20 18:10:20 2021)
> >>    /DOCINFO pdfmark
> >>  end
> >>  } ifelse
> >> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdate.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdate.eps
> >> index 1c091c99..ac767eff 100644
> >> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdate.eps
> >> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdate.eps
> >> @@ -1,7 +1,7 @@
> >>  %!PS-Adobe-2.0
> >>  %%Title: zooupdate.eps
> >>  %%Creator: gnuplot 5.2 patchlevel 2
> >> -%%CreationDate: Mon Dec 28 16:51:52 2020
> >> +%%CreationDate: Sat Feb 20 18:10:20 2021
> >>  %%DocumentFonts: (atend)
> >>  %%BoundingBox: 50 50 302 410
> >>  %%Orientation: Portrait
> >> @@ -1872,7 +1872,7 @@ SDict begin [
> >>    /Creator (gnuplot 5.2 patchlevel 2)
> >>  %  /Producer (gnuplot)
> >>  %  /Keywords ()
> >> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> >> +  /CreationDate (Sat Feb 20 18:10:20 2021)
> >>    /DOCINFO pdfmark
> >>  end
> >>  } ifelse
> >> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdatelu.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdatelu.eps
> >> index 6c560af7..8def236a 100644
> >> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdatelu.eps
> >> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdatelu.eps
> >> @@ -1,7 +1,7 @@
> >>  %!PS-Adobe-2.0
> >>  %%Title: zooupdatelu.eps
> >>  %%Creator: gnuplot 5.2 patchlevel 2
> >> -%%CreationDate: Mon Dec 28 16:51:52 2020
> >> +%%CreationDate: Sat Feb 20 18:10:20 2021
> >>  %%DocumentFonts: (atend)
> >>  %%BoundingBox: 50 50 302 410
> >>  %%Orientation: Portrait
> >> @@ -1872,7 +1872,7 @@ SDict begin [
> >>    /Creator (gnuplot 5.2 patchlevel 2)
> >>  %  /Producer (gnuplot)
> >>  %  /Keywords ()
> >> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> >> +  /CreationDate (Sat Feb 20 18:10:20 2021)
> >>    /DOCINFO pdfmark
> >>  end
> >>  } ifelse
> >> diff --git a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdatelulin.eps b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdatelulin.eps
> >> index 46172fb6..34e1f5d2 100644
> >> --- a/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdatelulin.eps
> >> +++ b/CodeSamples/datastruct/hash/data/hps.perf.2020.11.26a/zooupdatelulin.eps
> >> @@ -1,7 +1,7 @@
> >>  %!PS-Adobe-2.0
> >>  %%Title: zooupdatelulin.eps
> >>  %%Creator: gnuplot 5.2 patchlevel 2
> >> -%%CreationDate: Mon Dec 28 16:51:52 2020
> >> +%%CreationDate: Sat Feb 20 18:10:20 2021
> >>  %%DocumentFonts: (atend)
> >>  %%BoundingBox: 50 50 302 410
> >>  %%Orientation: Portrait
> >> @@ -1872,7 +1872,7 @@ SDict begin [
> >>    /Creator (gnuplot 5.2 patchlevel 2)
> >>  %  /Producer (gnuplot)
> >>  %  /Keywords ()
> >> -  /CreationDate (Mon Dec 28 16:51:52 2020)
> >> +  /CreationDate (Sat Feb 20 18:10:20 2021)
> >>    /DOCINFO pdfmark
> >>  end
> >>  } ifelse
> >> -- 
> >> 2.17.1
> >>
> >>

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

end of thread, other threads:[~2021-02-22 23:27 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-20 15:12 [PATCH -perfbook 1/3] treewide: Fix choice of \cref{}/\Cref{} macros Akira Yokosawa
2021-02-20 15:16 ` [PATCH -perfbook 2/3] datastruct: Fix typo Akira Yokosawa
2021-02-20 15:20 ` [PATCH -perfbook 3/3] datastruct: Shorten X label of cat-only lookup performance plot Akira Yokosawa
2021-02-21 22:02   ` Paul E. McKenney
2021-02-21 22:28     ` Akira Yokosawa
2021-02-22 23:26       ` 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.