summaryrefslogtreecommitdiff
path: root/test/performance/client.hpp
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2018-05-27 11:39:51 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2018-05-27 11:39:51 +0200
commit38318fa39c1db483546f7affe658441bcc124425 (patch)
treec30e82d8660a947e8c2c149379bb16227e7a7568 /test/performance/client.hpp
parentc85c385aaf0edbbd03d8624bfc4a82f65a470675 (diff)
Added maximum time reporting to the client statistics
Diffstat (limited to 'test/performance/client.hpp')
-rw-r--r--test/performance/client.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/performance/client.hpp b/test/performance/client.hpp
index 87471f3a..0cec242f 100644
--- a/test/performance/client.hpp
+++ b/test/performance/client.hpp
@@ -42,7 +42,7 @@ template <typename T, typename U>
class Client {
public:
static const int kSeed;
- struct TimeResult { double minimum; double mean; double standard_deviation; };
+ struct TimeResult { double minimum; double maximum; double mean; double standard_deviation; };
// Shorthand for the routine-specific functions passed to the tester
using Routine = std::function<StatusCode(const Arguments<U>&, Buffers<T>&, Queue&)>;