- Mar 18, 2021
-
-
Florian Schmaus authored
[Debug] declare LOG_STR_LAMBDA's return type because gcc 8.3 can't infer it See merge request !137
-
Florian Fischer authored
-
- Mar 17, 2021
-
-
Florian Schmaus authored
Debug changes for our Future See merge request !134
-
Florian Schmaus authored
Echo client changes See merge request !135
-
Florian Fischer authored
While we haven't figured out why the version using linked futures breaks we can use a simpler implementation which calls submitAndWait on both futures separately
-
Florian Fischer authored
First of all this replaces the call to sleep(execution_seconds) which calls POSIX sleep(3) which is definitely not what we want here blocking one worker thread. Using a std::thread for termination was chosen because we assume it will be more precise than the emper native emper::sleep.
-
- Mar 16, 2021
-
-
Florian Schmaus authored
Gather stats regarding re-reaps See merge request !127
-
Florian Schmaus authored
-
Florian Schmaus authored
-
Florian Fischer authored
Document the encountered failures in code comments.
-
Florian Fischer authored
This test resembles our EchoClient implementation using linked futures.
-
Florian Fischer authored
-
Florian Schmaus authored
[Debug] use a lambda to build up the log message See merge request !133
-
Florian Fischer authored
This hides the used std::stringstream from the context using the LOG macros. So we don't have to see the a huge messy std::stringstream object in gdb for example. The use of a lambda is a ISO C++ alternative to GCC's statement expression.
-
- Mar 15, 2021
-
-
Florian Schmaus authored
More debug related changes See merge request !131
-
Florian Schmaus authored
[IO] propagate callerEnvironment to reapCompletion See merge request !132
-
Florian Fischer authored
-
- Mar 13, 2021
-
-
Florian Fischer authored
-
Florian Fischer authored
* Remove the obsolete EMPER_LOG_OFF check. * Add LogLevel::Debug to DBG and WDBG
-
- Mar 12, 2021
-
-
Florian Schmaus authored
[IO] add execution time option to EchoClient See merge request !129
-
Florian Schmaus authored
[Debug] remove OFF LogLevel, make Info release default, use constexpr everywhere See merge request !130
-
Florian Fischer authored
-
Florian Fischer authored
-
- Mar 11, 2021
-
-
Florian Schmaus authored
[EchoServer] add configurable computation part in us spent busy looping See merge request !124
-
Florian Fischer authored
-
Florian Fischer authored
Specifying execution time and iterations is not allowed.
-
- Mar 10, 2021
-
-
Florian Schmaus authored
Improved echo client See merge request !128
-
- Mar 09, 2021
-
-
Florian Schmaus authored
[IO] make the lock implementation protecting a IoContext's cq configurable  See merge request !126
-
Florian Fischer authored
This change introduces a new synchronization primitive "PseudoCountingTryLock" which takes an actual lock as template and provides a CountingTryLock interface. By using a PseudoCountingTryLock we don't have to change any synchronization code in IoContext::reapCompletion. Since all PseudoCountingTryLock code is defined in a header the compiler should see our constant return values and hopefully optimize away any check depending on those constant return values. Options: * spin_lock - naive CAS spin lock * mutex - std::mutex * counting_try_lock (default) - our own lightweight special purpose synchronization primitive
-
Florian Schmaus authored
Reduce the critical section of io_uring CQ See merge request !120
-
Florian Schmaus authored
[meson] Fix 'iwyu' target for meson >= 0.57 See merge request !125
-
Florian Schmaus authored
Probably avoids dynamic memory allocation done by the previously used std::vector.
-
Florian Schmaus authored
The run_target() function requires an absolute path in meson >= 0.57.
-
- Mar 08, 2021
-
-
Florian Fischer authored
* Open file only when the benchmark was successful * Append to existing files without writing the header
-
Florian Fischer authored
Nagle's algorithm which tries to prevent small TCP frames is harmful for our throughput if we send small echos. Arithmetic means are inaccurate if the sample has extreme outliers therefore we record and report the total execution times.
-
Florian Schmaus authored
-
Florian Schmaus authored
[IO] parallelize IO startup See merge request !122
-
Florian Schmaus authored
[meson] remove obsolete io_batch_anywhere_completions option See merge request !121
-
Florian Fischer authored
GlobalIoContext::registerWorkerIo() now protects the GlobalIoContext's SQ with a mutex and the globalCompleter waits till all worker's registered their IoContext with the new Sempahore Runtime.ioReadySem.
-
Florian Fischer authored
Since 8f38dbed the globalCompleter does always reap and schedule in batches through IoContest::reapAndSchedule<CallerEnvironment::ANYWHERE> -> Runtime::scheduleFromAnywhere(Input it begin, InputIt end) -> AnywhereQueue::insert(Input it begin, InputIt end)
-