[LNT] r317290 - docs/importing_data: Add missing 'hash' field

Matthias Braun via llvm-commits llvm-commits at lists.llvm.org
Thu Nov 2 16:55:18 PDT 2017


Author: matze
Date: Thu Nov  2 16:55:18 2017
New Revision: 317290

URL: http://llvm.org/viewvc/llvm-project?rev=317290&view=rev
Log:
docs/importing_data: Add missing 'hash' field

Modified:
    lnt/trunk/docs/importing_data.rst

Modified: lnt/trunk/docs/importing_data.rst
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/docs/importing_data.rst?rev=317290&r1=317289&r2=317290&view=diff
==============================================================================
--- lnt/trunk/docs/importing_data.rst (original)
+++ lnt/trunk/docs/importing_data.rst Thu Nov  2 16:55:18 2017
@@ -81,13 +81,14 @@ benchmark suites as well. The following
 * ``execution_time``: Execution time in seconds; lower is better.
 * ``score``: Benchmarking score; higher is better.
 * ``compile_time``: Compiling time in seconds; lower is better.
+* ``hash``: A string with the executable hash (usually md5sum of the stripped binary)
+* ``mem_bytes``: Memory usage in bytes during execution; lower is better.
+* ``code_size``: Code size (usually the size of the text segment) in bytes;
+  lower is better.
 * ``execution_status``: A non zero value represents an execution failure.
 * ``compilation_status``: A non zero value represents a compilation failure.
 * ``hash_status``: A non zero value represents a failure computing the
   executable hash.
-* ``mem_bytes``: Memory usage in bytes during execution; lower is better.
-* ``code_size``: Code size (usually the size of the text segment) in bytes;
-  lower is better.
 
 The `run` information is expected to contain this:
 




More information about the llvm-commits mailing list