# HG changeset patch # User Chris Cannam # Date 1473689855 -3600 # Node ID 6fe9f501050548b16b3bb039b3d431bcf0f1ae77 # Parent 7668fbdcfb15ff3b6e6d0b585cf7c23de84b1704 Some timing calculations. I don't actually want to keep these, they're just for reference -- will back out in a mo diff -r 7668fbdcfb15 -r 6fe9f5010505 json/VampJson.h --- a/json/VampJson.h Fri Sep 09 11:05:44 2016 +0100 +++ b/json/VampJson.h Mon Sep 12 15:17:35 2016 +0100 @@ -49,6 +49,8 @@ #include "bits/PluginHandleMapper.h" #include "bits/RequestResponseType.h" +#include + namespace vampipe { /** @@ -317,22 +319,35 @@ static std::string fromFloatBuffer(const float *buffer, size_t nfloats) { + static std::chrono::nanoseconds total; + auto t0 = std::chrono::high_resolution_clock::now(); // must use char pointers, otherwise the converter will only // encode every 4th byte (as it will count up in float* steps) const char *start = reinterpret_cast(buffer); const char *end = reinterpret_cast(buffer + nfloats); std::string encoded; + encoded.reserve(16 * nfloats / 3); bn::encode_b64(start, end, back_inserter(encoded)); + auto t1 = std::chrono::high_resolution_clock::now(); + total += std::chrono::duration_cast(t1 - t0); +// std::cout << "encode: " << total.count()/1000000 << std::endl; return encoded; } static std::vector toFloatBuffer(std::string encoded) { + static std::chrono::nanoseconds total; + auto t0 = std::chrono::high_resolution_clock::now(); std::string decoded; + decoded.reserve(3 * encoded.size() / 4); bn::decode_b64(encoded.begin(), encoded.end(), back_inserter(decoded)); const float *buffer = reinterpret_cast(decoded.c_str()); size_t n = decoded.size() / sizeof(float); - return std::vector(buffer, buffer + n); + std::vector result(buffer, buffer + n); + auto t1 = std::chrono::high_resolution_clock::now(); + total += std::chrono::duration_cast(t1 - t0); +// std::cout << "decode: " << total.count()/1000000 << std::endl; + return result; } static json11::Json @@ -868,6 +883,9 @@ const PluginHandleMapper &mapper, BufferSerialisation &serialisation) { + static std::chrono::nanoseconds total; + auto t0 = std::chrono::high_resolution_clock::now(); + std::string err; if (!j.has_shape({ @@ -909,6 +927,10 @@ } } + auto t1 = std::chrono::high_resolution_clock::now(); + total += std::chrono::duration_cast(t1 - t0); +// std::cout << "parse: " << total.count()/1000000 << std::endl; + return r; }