1bench::in(n) Benchmarking/Performance tools bench::in(n)
2
3
4
5______________________________________________________________________________
6
8 bench::in - bench::in - Reading benchmark results
9
11 package require Tcl 8.2
12
13 package require csv
14
15 package require bench::in ?0.1?
16
17 ::bench::in::read file
18
19______________________________________________________________________________
20
22 This package provides a command for reading benchmark results from
23 files, sockets, etc.
24
25 A reader interested in the creation, processing or writing of such
26 results should go and read bench - Processing benchmark suites instead.
27
28 If the bench language itself is the actual interest please start with
29 the bench language introduction and then proceed from there to the for‐
30 mal bench language specification.
31
33 ::bench::in::read file
34 This command reads a benchmark result from the specified file
35 and returns it as its result. The command understands the three
36 formats created by the commands
37
38 bench::out::raw
39 Provided by package bench.
40
41 bench::out::csv
42 Provided by package bench::out::csv.
43
44 bench::out::text
45 Provided by package bench::out::text.
46
47 and automatically detects which format is used by the input file.
48
50 This document, and the package it describes, will undoubtedly contain
51 bugs and other problems. Please report such in the category bench of
52 the Tcllib Trackers [http://core.tcl.tk/tcllib/reportlist]. Please
53 also report any ideas for enhancements you may have for either package
54 and/or documentation.
55
56 When proposing code changes, please provide unified diffs, i.e the out‐
57 put of diff -u.
58
59 Note further that attachments are strongly preferred over inlined
60 patches. Attachments can be made by going to the Edit form of the
61 ticket immediately after its creation, and then using the left-most
62 button in the secondary navigation bar.
63
65 bench, bench::out::csv, bench::out::text, bench_intro
66
68 benchmark, csv, formatting, human readable, parsing, performance, read‐
69 ing, testing, text
70
72 Benchmark tools
73
75 Copyright (c) 2007 Andreas Kupries <andreas_kupries@users.sourceforge.net>
76
77
78
79
80tcllib 0.1 bench::in(n)