ClickHouse/src/Common/thread_local_rng.h
2020-04-03 18:14:31 +03:00

6 lines
186 B
C++

#pragma once
#include <pcg_random.hpp>
/// Fairly good thread-safe random number generator, but probably slow-down thread creation a little.
extern thread_local pcg64 thread_local_rng;