Build with g++4-8, the oldest supported
CC=gcc-4.8 CXX=g++-4.8 CPPFLAGS=-D_GLIBCXX_USE_CXX11_ABI=0 ./configure --disable-wallet| function prompt_timer_start { | |
| PROMPT_TIMER=${PROMPT_TIMER:-`date +%s.%3N`} | |
| echo -ne "\033]0;${@}\007" | |
| } | |
| function prompt_svn_stats() { | |
| command -v svn >/dev/null | |
| if [ $? != 0 ]; then | |
| return | |
| fi |
| #include <algorithm> | |
| #include <chrono> | |
| #include <iostream> | |
| #include <random> | |
| #define LIKELY(x) __builtin_expect((x), 1) | |
| #define UNLIKELY(x) __builtin_expect((x), 0) | |
| #define NO_INLINE __attribute__((noinline)) | |
| // extremely fast random number generator that also produces very high quality random. |
| #include <iostream> | |
| #include <string> | |
| #include <chrono> | |
| #include <unordered_map> | |
| #include "tsl/robin_map.h" | |
| #include "robin_hood.h" | |
| using namespace std; | |
| using my_clock = std::chrono::high_resolution_clock; |
| #include <iostream> | |
| #include <string> | |
| #include <chrono> | |
| #include <unordered_map> | |
| #include "tsl/robin_map.h" | |
| #include "robin_hood.h" | |
| using my_clock = std::chrono::high_resolution_clock; |
Build with g++4-8, the oldest supported
CC=gcc-4.8 CXX=g++-4.8 CPPFLAGS=-D_GLIBCXX_USE_CXX11_ABI=0 ./configure --disable-wallet| # Automatically set window title | |
| set-window-option -g automatic-rename on | |
| set-option -g set-titles on | |
| set-option -g history-limit 10000 | |
| # Enable mouse mode (tmux 2.1 and above) | |
| setw -g mouse on | |
| # remap prefix from 'C-b' to 'C-Space' | |
| unbind C-b |
Warning, results might be unstable:
Recommendations
| ns/op | op/s | err% | ins/op | cyc/op | IPC | total | benchmark |
|---|
| #pragma once | |
| #include <bitset> | |
| #include <type_traits> | |
| namespace util { | |
| // Provides a type-safe bitset for enums | |
| template <typename E> | |
| class EnumFlags { |
| class UpToExecutor { | |
| public: | |
| UpToExecutor(int64_t begin, int64_t end, int64_t step) | |
| : mBegin(begin) | |
| , mEnd(end) | |
| , mStep(step) {} | |
| template <typename Op> | |
| void operator()(Op op) { |