aboutsummaryrefslogtreecommitdiff
path: root/pkg/bench/plots.cl
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/bench/plots.cl')
-rw-r--r--pkg/bench/plots.cl20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkg/bench/plots.cl b/pkg/bench/plots.cl
new file mode 100644
index 00000000..dc92ae4b
--- /dev/null
+++ b/pkg/bench/plots.cl
@@ -0,0 +1,20 @@
+# PLOTS -- Measure the time required to make a number of row plots of an image.
+
+procedure plots (image, nlines)
+
+string image { prompt = "image to be plotted" }
+int nlines { prompt = "number of line plots to be made" }
+
+string imname
+int nleft
+
+begin
+ cache ("prow")
+ imname = image
+ time(); print ("======== start ========")
+
+ for (nleft=nlines; nleft > 0; nleft-=1)
+ $prow (imname, 50, >G "dev$null")
+
+ print ("======== end ========"); time()
+end