2019-08-19 19:27:18 +02:00
|
|
|
#
|
|
|
|
# Copyright 2019 The Abseil Authors.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# https://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
#
|
|
|
|
|
2019-06-21 22:11:42 +02:00
|
|
|
# ABSL random-number generation libraries.
|
|
|
|
|
2019-08-16 16:38:13 +02:00
|
|
|
load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library", "cc_test")
|
2019-06-21 22:11:42 +02:00
|
|
|
load(
|
|
|
|
"//absl:copts/configure_copts.bzl",
|
|
|
|
"ABSL_DEFAULT_COPTS",
|
|
|
|
"ABSL_DEFAULT_LINKOPTS",
|
|
|
|
"ABSL_TEST_COPTS",
|
|
|
|
)
|
|
|
|
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
|
Export of internal Abseil changes
--
f13697e3d33803f9667d124072da4f6dd8bfbf85 by Andy Soffer <asoffer@google.com>:
Addressing https://github.com/abseil/abseil-cpp/issues/314, fixing
CMakeLists.txt to reference ABSL_TEST_COPTS rather than ABSL_DEFAULT_COPTS.
ABSL_TEST_COPTS should be preferred for all tests so that they are configured consistently (moreover, CMake should agree with Bazel).
PiperOrigin-RevId: 274932312
--
c31c24a1fa6bb98136adf51ef37c0818ac366690 by Derek Mauro <dmauro@google.com>:
Silence MSAN in the stack consumption test utility
PiperOrigin-RevId: 274912950
--
2412913c05a246cd527cd4c31452f126e9129f3a by CJ Johnson <johnsoncj@google.com>:
Internal change
PiperOrigin-RevId: 274847103
--
75e984a93b5760873501b96ac3229ccfd955daf8 by Abseil Team <absl-team@google.com>:
Reformat BUILD file to current standards.
PiperOrigin-RevId: 274815392
--
a2780e085f1df1e4ca2c814a58c893d1b78a1d9c by Samuel Benzaquen <sbenza@google.com>:
Fix invalid result regarding leading zeros in the exponent.
PiperOrigin-RevId: 274808017
--
dd402e1cb5c4ebacb576372ae24bf289d729d323 by Samuel Benzaquen <sbenza@google.com>:
Make string_view's relational operators constexpr when possible.
PiperOrigin-RevId: 274807873
--
b4ef32565653a5da1cb8bb8d0351586d23519658 by Abseil Team <absl-team@google.com>:
Internal rework.
PiperOrigin-RevId: 274787159
--
70d81971c5914e6785b8e8a9d4f6eb2655dd62c0 by Gennadiy Rozental <rogeeff@google.com>:
Internal rework.
PiperOrigin-RevId: 274715557
--
14f5b0440e353b899cafaaa15b53e77f98f401af by Gennadiy Rozental <rogeeff@google.com>:
Make deprecated statements about ParseFLag/UnparseFlag consistent in a file.
PiperOrigin-RevId: 274668123
--
2e85adbdbb92612e4d750bc34fbca3333128b42d by Abseil Team <absl-team@google.com>:
Allow absl::c_equal to be used with arrays.
This is achieved by allowing container size computation for arrays.
PiperOrigin-RevId: 274426830
--
219719f107226d328773e6cec99fb473f5d3119c by Gennadiy Rozental <rogeeff@google.com>:
Release correct extension interfaces to support usage of absl::Time and absl::Duration as ABSL_FLAG
PiperOrigin-RevId: 274273788
--
47a77f93fda23b69b4a6bdbd506fe643c69a5579 by Gennadiy Rozental <rogeeff@google.com>:
Rework of flags persistence/FlagSaver internals.
PiperOrigin-RevId: 274225213
--
7807be3fe757c19e3b0c487298387683d4c9f5b3 by Abseil Team <absl-team@google.com>:
Switch reference to sdkddkver.h to lowercase, matching conventions used in the Windows SDK and other uses. This helps to avoid confusion on case-sensitive filesystems.
PiperOrigin-RevId: 274061877
--
561304090087a19f1d10f0475f564fe132ebf06e by Andy Getzendanner <durandal@google.com>:
Fix ABSL_WAITER_MODE detection for mingw
Import of https://github.com/abseil/abseil-cpp/pull/342
PiperOrigin-RevId: 274030071
--
9b3caac2cf202b9d440dfa1b4ffd538ac4bf715b by Derek Mauro <dmauro@google.com>:
Support using Abseil with the musl libc implementation.
Only test changes were required:
* Workaround for a bug in sigaltstack() on musl
* printf-style pointer formatting (%p) is implementation defined,
so verify StrFromat produces something compatible
* Fix detection of feenableexcept()
PiperOrigin-RevId: 274011666
--
73e8a938fc139e1cc8670d4513a445bacc855539 by Abseil Team <absl-team@google.com>:
nvcc workaround: explicitly specify the definition of node_handle::Base
PiperOrigin-RevId: 274011392
--
ab9cc6d042aca7d48e16c504ab10eab39433f4b2 by Andy Soffer <asoffer@google.com>:
Internal change
PiperOrigin-RevId: 273996318
--
e567c4979ca99c7e71821ec1523b8f5edd2c76ac by Abseil Team <absl-team@google.com>:
Introduce a type alias to work around an nvcc bug.
On the previous code, nvcc gets confused thinking that T has to be a parameter
pack, as IsDecomposable accepts one.
PiperOrigin-RevId: 273980472
--
105b6e6339b77a32f4432de05f44cd3f9c436751 by Eric Fiselier <ericwf@google.com>:
Import of CCTZ from GitHub.
PiperOrigin-RevId: 273955589
--
8feb87ff1d7e721fe094855e67c19539d5e582b7 by Abseil Team <absl-team@google.com>:
Avoid dual-exporting scheduling_mode.h
PiperOrigin-RevId: 273825112
--
fbc37854776d295dae98fb9d06a541f296daab95 by Andy Getzendanner <durandal@google.com>:
Fix ABSL_HAVE_ALARM check on mingw
Import of https://github.com/abseil/abseil-cpp/pull/341
PiperOrigin-RevId: 273817839
--
6aedcd63a735b9133e143b043744ba0a25407f6f by Andy Soffer <asoffer@google.com>:
Remove bit_gen_view.h now that all callers have been migrated to bit_gen_ref.h
Tested:
TGP - https://test.corp.google.com/ui#id=OCL:273762409:BASE:273743370:1570639020744:3001bcb5
PiperOrigin-RevId: 273810331
--
6573de24a66ba715c579f7f32b5c48a1d743c7f8 by Abseil Team <absl-team@google.com>:
Internal change.
PiperOrigin-RevId: 273589963
--
91c8c28b6dca26d98b39e8e06a8ed17c701ff793 by Abseil Team <absl-team@google.com>:
Update macro name for `ABSL_GUARDED_BY()` in the example section.
PiperOrigin-RevId: 273286983
--
0ff7d1a93d70f8ecd693f8dbb98b7a4a016ca2a4 by Abseil Team <absl-team@google.com>:
Fix potential integer overflow in the absl time library.
In absl::FromTM, the tm.tm_year is added by 1900 regarding that tm.tm_year represents the years since 1900. This change checks integer overflow before doing the arithmetic operation.
PiperOrigin-RevId: 273092952
--
b41c2a1310086807be09a833099ae6d4009f037c by Gennadiy Rozental <rogeeff@google.com>:
Correctly Unlock the global mutex in case of concurrent flag initialization.
Fixes #386
PiperOrigin-RevId: 272979749
--
c53103e71b2a6063af3c6d4ff68aa2d8f9ae9e06 by Abseil Team <absl-team@google.com>:
Try to become idle only when there is no wakeup.
Immediately after waking up (when futex wait returns), the current thread tries
to become idle doing bunch of memory loads and a branch. Problem is that there
is a good chance that we woke up due to a wakeup, especially for actively used
threads. For such wakeups, calling MaybeBecomeIdle() would be a waste of
cycles.
Instead, call MaybeBecomeIdle() only when we are sure there is no wakeup. For
idle threads the net effect should be the same. For active, threads this will
be more efficient.
Moreover, since MaybeBecomeIdle() is called before waiting on the futex, the
current thread will try to become idle before sleeping. This should result
in more accurate idleness and more efficient release of thread resources.
PiperOrigin-RevId: 272940381
GitOrigin-RevId: f13697e3d33803f9667d124072da4f6dd8bfbf85
Change-Id: I36de05aec12595183725652dd362dfa58fb095d0
2019-10-16 03:18:40 +02:00
|
|
|
licenses(["notice"])
|
2019-06-21 22:11:42 +02:00
|
|
|
|
|
|
|
cc_library(
|
|
|
|
name = "random",
|
|
|
|
hdrs = ["random.h"],
|
|
|
|
copts = ABSL_DEFAULT_COPTS,
|
|
|
|
linkopts = ABSL_DEFAULT_LINKOPTS,
|
|
|
|
deps = [
|
|
|
|
":distributions",
|
|
|
|
":seed_sequences",
|
|
|
|
"//absl/random/internal:nonsecure_base",
|
|
|
|
"//absl/random/internal:pcg_engine",
|
|
|
|
"//absl/random/internal:pool_urbg",
|
|
|
|
"//absl/random/internal:randen_engine",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc_library(
|
|
|
|
name = "distributions",
|
|
|
|
srcs = [
|
|
|
|
"discrete_distribution.cc",
|
|
|
|
"gaussian_distribution.cc",
|
|
|
|
],
|
|
|
|
hdrs = [
|
|
|
|
"bernoulli_distribution.h",
|
|
|
|
"beta_distribution.h",
|
|
|
|
"discrete_distribution.h",
|
|
|
|
"distributions.h",
|
|
|
|
"exponential_distribution.h",
|
|
|
|
"gaussian_distribution.h",
|
|
|
|
"log_uniform_int_distribution.h",
|
|
|
|
"poisson_distribution.h",
|
|
|
|
"uniform_int_distribution.h",
|
|
|
|
"uniform_real_distribution.h",
|
|
|
|
"zipf_distribution.h",
|
|
|
|
],
|
|
|
|
copts = ABSL_DEFAULT_COPTS,
|
|
|
|
linkopts = ABSL_DEFAULT_LINKOPTS,
|
|
|
|
deps = [
|
|
|
|
"//absl/base:base_internal",
|
2020-01-28 20:50:11 +01:00
|
|
|
"//absl/base:config",
|
2019-06-21 22:11:42 +02:00
|
|
|
"//absl/base:core_headers",
|
|
|
|
"//absl/meta:type_traits",
|
2020-06-17 15:53:10 +02:00
|
|
|
"//absl/random/internal:distribution_caller",
|
2019-06-21 22:11:42 +02:00
|
|
|
"//absl/random/internal:fast_uniform_bits",
|
|
|
|
"//absl/random/internal:fastmath",
|
Export of internal Abseil changes
--
e54b9c7bbb0c58475676c268e2e19c69f4bce48a by Jorg Brown <jorg@google.com>:
Tweak ABSL_PREDICT_TRUE slightly, for better code on some platforms and/or
optimization levels. "false || (x)" is more verbose than "!!(x)", but
ultimately more efficient.
For example, given this code:
void InitIfNecessary() {
if (ABSL_PREDICT_TRUE(NeedsInit())) {
SlowInitIfNecessary();
}
}
Clang with default optimization level will produce:
Before this CL After this CL
InitIfNecessary: InitIfNecessary:
push rbp push rbp
mov rbp, rsp mov rbp, rsp
call NeedsInit call NeedsInit
xor al, -1
xor al, -1
test al, 1 test al, 1
jne .LBB2_1 jne .LBB3_1
jmp .LBB2_2 jmp .LBB3_2
.LBB2_1: .LBB3_1:
call SlowInitIfNecessary call SlowInitIfNecessary
.LBB2_2: .LBB3_2:
pop rbp pop rbp
ret ret
PiperOrigin-RevId: 276401386
--
0a3c4dfd8342bf2b1b11a87f1c662c883f73cab7 by Abseil Team <absl-team@google.com>:
Fix comment nit: sem_open => sem_init.
The code calls sem_init, not sem_open, to initialize an unnamed semaphore.
(sem_open creates or opens a named semaphore.)
PiperOrigin-RevId: 276344072
--
b36a664e9459057509a90e83d3482e1d3a4c44c7 by Abseil Team <absl-team@google.com>:
Fix typo in flat_hash_map.h: exchaged -> exchanged
PiperOrigin-RevId: 276295792
--
7bbd8d18276eb110c8335743e35fceb662ddf3d6 by Samuel Benzaquen <sbenza@google.com>:
Add assertions to verify use of iterators.
PiperOrigin-RevId: 276283300
--
677398a8ffcb1f59182cffe57a4fe7ff147a0404 by Laramie Leavitt <lar@google.com>:
Migrate distribution_impl.h/cc to generate_real.h/cc.
Combine the methods RandU64To<Float,Double> into a single method:
GenerateRealFromBits().
Remove rejection sampling from absl::uniform_real_distribution.
PiperOrigin-RevId: 276158675
--
c60c9d11d24b0c546329d998e78e15a84b3153f5 by Abseil Team <absl-team@google.com>:
Internal change
PiperOrigin-RevId: 276126962
--
4c840cab6a8d86efa29b397cafaf7520eece68cc by Andy Soffer <asoffer@google.com>:
Update CMakeLists.txt to address https://github.com/abseil/abseil-cpp/issues/365.
This does not cover every platform, but it does at least address the
first-order issue of assuming gcc implies x86.
PiperOrigin-RevId: 276116253
--
98da366e6b5d51afe5d7ac6722126aca23d85ee6 by Abseil Team <absl-team@google.com>:
Internal change
PiperOrigin-RevId: 276097452
GitOrigin-RevId: e54b9c7bbb0c58475676c268e2e19c69f4bce48a
Change-Id: I02d84454bb71ab21ad3d39650acf6cc6e36f58d7
2019-10-24 04:35:39 +02:00
|
|
|
"//absl/random/internal:generate_real",
|
2019-06-21 22:11:42 +02:00
|
|
|
"//absl/random/internal:iostream_state_saver",
|
|
|
|
"//absl/random/internal:traits",
|
|
|
|
"//absl/random/internal:uniform_helper",
|
2019-10-17 00:51:11 +02:00
|
|
|
"//absl/random/internal:wide_multiply",
|
2019-06-21 22:11:42 +02:00
|
|
|
"//absl/strings",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc_library(
|
|
|
|
name = "seed_gen_exception",
|
|
|
|
srcs = ["seed_gen_exception.cc"],
|
|
|
|
hdrs = ["seed_gen_exception.h"],
|
2019-08-30 21:03:24 +02:00
|
|
|
copts = ABSL_DEFAULT_COPTS,
|
|
|
|
linkopts = ABSL_DEFAULT_LINKOPTS,
|
2019-06-21 22:11:42 +02:00
|
|
|
deps = ["//absl/base:config"],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc_library(
|
|
|
|
name = "seed_sequences",
|
|
|
|
srcs = ["seed_sequences.cc"],
|
|
|
|
hdrs = [
|
|
|
|
"seed_sequences.h",
|
|
|
|
],
|
|
|
|
copts = ABSL_DEFAULT_COPTS,
|
|
|
|
linkopts = ABSL_DEFAULT_LINKOPTS,
|
|
|
|
deps = [
|
|
|
|
":seed_gen_exception",
|
|
|
|
"//absl/container:inlined_vector",
|
|
|
|
"//absl/random/internal:nonsecure_base",
|
|
|
|
"//absl/random/internal:pool_urbg",
|
|
|
|
"//absl/random/internal:salted_seed_seq",
|
|
|
|
"//absl/random/internal:seed_material",
|
|
|
|
"//absl/types:span",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2019-11-20 22:55:25 +01:00
|
|
|
cc_library(
|
|
|
|
name = "bit_gen_ref",
|
|
|
|
hdrs = ["bit_gen_ref.h"],
|
|
|
|
copts = ABSL_DEFAULT_COPTS,
|
|
|
|
linkopts = ABSL_DEFAULT_LINKOPTS,
|
|
|
|
deps = [
|
2020-06-17 15:53:10 +02:00
|
|
|
":random",
|
2019-11-20 22:55:25 +01:00
|
|
|
"//absl/base:core_headers",
|
2020-06-17 15:53:10 +02:00
|
|
|
"//absl/base:fast_type_id",
|
2019-11-20 22:55:25 +01:00
|
|
|
"//absl/meta:type_traits",
|
|
|
|
"//absl/random/internal:distribution_caller",
|
|
|
|
"//absl/random/internal:fast_uniform_bits",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc_library(
|
|
|
|
name = "mock_distributions",
|
|
|
|
testonly = 1,
|
|
|
|
hdrs = ["mock_distributions.h"],
|
|
|
|
deps = [
|
|
|
|
":distributions",
|
|
|
|
":mocking_bit_gen",
|
|
|
|
"//absl/meta:type_traits",
|
|
|
|
"//absl/random/internal:mock_overload_set",
|
|
|
|
"@com_google_googletest//:gtest",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc_library(
|
|
|
|
name = "mocking_bit_gen",
|
|
|
|
testonly = 1,
|
|
|
|
hdrs = [
|
|
|
|
"mocking_bit_gen.h",
|
|
|
|
],
|
|
|
|
linkopts = ABSL_DEFAULT_LINKOPTS,
|
|
|
|
deps = [
|
|
|
|
":distributions",
|
2020-06-17 15:53:10 +02:00
|
|
|
":random",
|
|
|
|
"//absl/base:fast_type_id",
|
2019-11-20 22:55:25 +01:00
|
|
|
"//absl/container:flat_hash_map",
|
|
|
|
"//absl/meta:type_traits",
|
|
|
|
"//absl/random/internal:distribution_caller",
|
|
|
|
"//absl/strings",
|
|
|
|
"//absl/types:span",
|
|
|
|
"//absl/types:variant",
|
|
|
|
"//absl/utility",
|
|
|
|
"@com_google_googletest//:gtest",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2019-06-21 22:11:42 +02:00
|
|
|
cc_test(
|
|
|
|
name = "bernoulli_distribution_test",
|
|
|
|
size = "small",
|
|
|
|
timeout = "eternal", # Android can take a very long time
|
|
|
|
srcs = ["bernoulli_distribution_test.cc"],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
|
|
|
linkopts = ABSL_DEFAULT_LINKOPTS,
|
|
|
|
deps = [
|
|
|
|
":distributions",
|
|
|
|
":random",
|
2020-05-19 02:53:14 +02:00
|
|
|
"//absl/random/internal:pcg_engine",
|
2019-06-21 22:11:42 +02:00
|
|
|
"//absl/random/internal:sequence_urbg",
|
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc_test(
|
|
|
|
name = "beta_distribution_test",
|
|
|
|
size = "small",
|
|
|
|
timeout = "eternal", # Android can take a very long time
|
|
|
|
srcs = ["beta_distribution_test.cc"],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
2020-01-28 20:50:11 +01:00
|
|
|
flaky = 1,
|
2019-06-21 22:11:42 +02:00
|
|
|
linkopts = ABSL_DEFAULT_LINKOPTS,
|
|
|
|
deps = [
|
|
|
|
":distributions",
|
|
|
|
":random",
|
2019-08-13 19:20:16 +02:00
|
|
|
"//absl/base:raw_logging_internal",
|
2019-06-21 22:11:42 +02:00
|
|
|
"//absl/random/internal:distribution_test_util",
|
2020-05-19 02:53:14 +02:00
|
|
|
"//absl/random/internal:pcg_engine",
|
2019-06-21 22:11:42 +02:00
|
|
|
"//absl/random/internal:sequence_urbg",
|
|
|
|
"//absl/strings",
|
|
|
|
"//absl/strings:str_format",
|
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc_test(
|
|
|
|
name = "distributions_test",
|
|
|
|
size = "small",
|
|
|
|
srcs = [
|
|
|
|
"distributions_test.cc",
|
|
|
|
],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
|
|
|
linkopts = ABSL_DEFAULT_LINKOPTS,
|
|
|
|
deps = [
|
|
|
|
":distributions",
|
|
|
|
":random",
|
|
|
|
"//absl/random/internal:distribution_test_util",
|
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc_test(
|
|
|
|
name = "generators_test",
|
|
|
|
size = "small",
|
|
|
|
srcs = ["generators_test.cc"],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
|
|
|
linkopts = ABSL_DEFAULT_LINKOPTS,
|
|
|
|
deps = [
|
|
|
|
":distributions",
|
|
|
|
":random",
|
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc_test(
|
|
|
|
name = "log_uniform_int_distribution_test",
|
|
|
|
size = "medium",
|
|
|
|
srcs = [
|
|
|
|
"log_uniform_int_distribution_test.cc",
|
|
|
|
],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
|
|
|
linkopts = ABSL_DEFAULT_LINKOPTS,
|
|
|
|
deps = [
|
|
|
|
":distributions",
|
|
|
|
":random",
|
2019-08-13 19:20:16 +02:00
|
|
|
"//absl/base:raw_logging_internal",
|
2019-06-21 22:11:42 +02:00
|
|
|
"//absl/random/internal:distribution_test_util",
|
2020-05-19 02:53:14 +02:00
|
|
|
"//absl/random/internal:pcg_engine",
|
2019-06-21 22:11:42 +02:00
|
|
|
"//absl/random/internal:sequence_urbg",
|
|
|
|
"//absl/strings",
|
|
|
|
"//absl/strings:str_format",
|
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc_test(
|
|
|
|
name = "discrete_distribution_test",
|
|
|
|
size = "medium",
|
|
|
|
srcs = [
|
|
|
|
"discrete_distribution_test.cc",
|
|
|
|
],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
|
|
|
linkopts = ABSL_DEFAULT_LINKOPTS,
|
|
|
|
deps = [
|
|
|
|
":distributions",
|
|
|
|
":random",
|
2019-08-13 19:20:16 +02:00
|
|
|
"//absl/base:raw_logging_internal",
|
2019-06-21 22:11:42 +02:00
|
|
|
"//absl/random/internal:distribution_test_util",
|
2020-05-19 02:53:14 +02:00
|
|
|
"//absl/random/internal:pcg_engine",
|
2019-06-21 22:11:42 +02:00
|
|
|
"//absl/random/internal:sequence_urbg",
|
|
|
|
"//absl/strings",
|
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc_test(
|
|
|
|
name = "poisson_distribution_test",
|
|
|
|
size = "small",
|
|
|
|
timeout = "eternal", # Android can take a very long time
|
|
|
|
srcs = [
|
|
|
|
"poisson_distribution_test.cc",
|
|
|
|
],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
|
|
|
linkopts = ABSL_DEFAULT_LINKOPTS,
|
|
|
|
tags = [
|
|
|
|
# Too Slow.
|
|
|
|
"no_test_android_arm",
|
|
|
|
"no_test_loonix",
|
|
|
|
],
|
|
|
|
deps = [
|
|
|
|
":distributions",
|
|
|
|
":random",
|
|
|
|
"//absl/base:core_headers",
|
2019-08-13 19:20:16 +02:00
|
|
|
"//absl/base:raw_logging_internal",
|
2019-06-21 22:11:42 +02:00
|
|
|
"//absl/container:flat_hash_map",
|
|
|
|
"//absl/random/internal:distribution_test_util",
|
2020-05-19 02:53:14 +02:00
|
|
|
"//absl/random/internal:pcg_engine",
|
2019-06-21 22:11:42 +02:00
|
|
|
"//absl/random/internal:sequence_urbg",
|
|
|
|
"//absl/strings",
|
|
|
|
"//absl/strings:str_format",
|
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc_test(
|
|
|
|
name = "exponential_distribution_test",
|
|
|
|
size = "small",
|
|
|
|
srcs = ["exponential_distribution_test.cc"],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
|
|
|
linkopts = ABSL_DEFAULT_LINKOPTS,
|
|
|
|
deps = [
|
|
|
|
":distributions",
|
|
|
|
":random",
|
|
|
|
"//absl/base:core_headers",
|
2019-08-13 19:20:16 +02:00
|
|
|
"//absl/base:raw_logging_internal",
|
2019-06-21 22:11:42 +02:00
|
|
|
"//absl/random/internal:distribution_test_util",
|
2020-05-19 02:53:14 +02:00
|
|
|
"//absl/random/internal:pcg_engine",
|
2019-06-21 22:11:42 +02:00
|
|
|
"//absl/random/internal:sequence_urbg",
|
|
|
|
"//absl/strings",
|
|
|
|
"//absl/strings:str_format",
|
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc_test(
|
|
|
|
name = "gaussian_distribution_test",
|
|
|
|
size = "small",
|
|
|
|
timeout = "eternal", # Android can take a very long time
|
|
|
|
srcs = [
|
|
|
|
"gaussian_distribution_test.cc",
|
|
|
|
],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
|
|
|
linkopts = ABSL_DEFAULT_LINKOPTS,
|
|
|
|
deps = [
|
|
|
|
":distributions",
|
|
|
|
":random",
|
|
|
|
"//absl/base:core_headers",
|
2019-08-13 19:20:16 +02:00
|
|
|
"//absl/base:raw_logging_internal",
|
2019-06-21 22:11:42 +02:00
|
|
|
"//absl/random/internal:distribution_test_util",
|
|
|
|
"//absl/random/internal:sequence_urbg",
|
|
|
|
"//absl/strings",
|
|
|
|
"//absl/strings:str_format",
|
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc_test(
|
|
|
|
name = "uniform_int_distribution_test",
|
|
|
|
size = "medium",
|
|
|
|
timeout = "long",
|
|
|
|
srcs = [
|
|
|
|
"uniform_int_distribution_test.cc",
|
|
|
|
],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
|
|
|
linkopts = ABSL_DEFAULT_LINKOPTS,
|
|
|
|
deps = [
|
|
|
|
":distributions",
|
|
|
|
":random",
|
2019-08-13 19:20:16 +02:00
|
|
|
"//absl/base:raw_logging_internal",
|
2019-06-21 22:11:42 +02:00
|
|
|
"//absl/random/internal:distribution_test_util",
|
2020-05-19 02:53:14 +02:00
|
|
|
"//absl/random/internal:pcg_engine",
|
2019-06-21 22:11:42 +02:00
|
|
|
"//absl/random/internal:sequence_urbg",
|
|
|
|
"//absl/strings",
|
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc_test(
|
|
|
|
name = "uniform_real_distribution_test",
|
|
|
|
size = "medium",
|
|
|
|
srcs = [
|
|
|
|
"uniform_real_distribution_test.cc",
|
|
|
|
],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
|
|
|
linkopts = ABSL_DEFAULT_LINKOPTS,
|
|
|
|
tags = [
|
|
|
|
"no_test_android_arm",
|
|
|
|
"no_test_android_arm64",
|
|
|
|
"no_test_android_x86",
|
|
|
|
],
|
|
|
|
deps = [
|
|
|
|
":distributions",
|
|
|
|
":random",
|
2019-08-13 19:20:16 +02:00
|
|
|
"//absl/base:raw_logging_internal",
|
2019-06-21 22:11:42 +02:00
|
|
|
"//absl/random/internal:distribution_test_util",
|
2020-05-19 02:53:14 +02:00
|
|
|
"//absl/random/internal:pcg_engine",
|
2019-06-21 22:11:42 +02:00
|
|
|
"//absl/random/internal:sequence_urbg",
|
|
|
|
"//absl/strings",
|
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc_test(
|
|
|
|
name = "zipf_distribution_test",
|
|
|
|
size = "medium",
|
|
|
|
srcs = [
|
|
|
|
"zipf_distribution_test.cc",
|
|
|
|
],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
|
|
|
linkopts = ABSL_DEFAULT_LINKOPTS,
|
|
|
|
deps = [
|
|
|
|
":distributions",
|
|
|
|
":random",
|
2019-08-13 19:20:16 +02:00
|
|
|
"//absl/base:raw_logging_internal",
|
2019-06-21 22:11:42 +02:00
|
|
|
"//absl/random/internal:distribution_test_util",
|
2020-05-19 02:53:14 +02:00
|
|
|
"//absl/random/internal:pcg_engine",
|
2019-06-21 22:11:42 +02:00
|
|
|
"//absl/random/internal:sequence_urbg",
|
|
|
|
"//absl/strings",
|
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2019-11-20 22:55:25 +01:00
|
|
|
cc_test(
|
|
|
|
name = "bit_gen_ref_test",
|
|
|
|
size = "small",
|
|
|
|
srcs = ["bit_gen_ref_test.cc"],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
|
|
|
linkopts = ABSL_DEFAULT_LINKOPTS,
|
|
|
|
deps = [
|
|
|
|
":bit_gen_ref",
|
|
|
|
":random",
|
2020-06-17 15:53:10 +02:00
|
|
|
"//absl/base:fast_type_id",
|
2019-11-20 22:55:25 +01:00
|
|
|
"//absl/random/internal:sequence_urbg",
|
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc_test(
|
|
|
|
name = "mocking_bit_gen_test",
|
|
|
|
size = "small",
|
|
|
|
srcs = ["mocking_bit_gen_test.cc"],
|
2020-04-07 19:28:30 +02:00
|
|
|
copts = ABSL_TEST_COPTS,
|
2019-11-20 22:55:25 +01:00
|
|
|
linkopts = ABSL_DEFAULT_LINKOPTS,
|
|
|
|
deps = [
|
|
|
|
":bit_gen_ref",
|
|
|
|
":mock_distributions",
|
|
|
|
":mocking_bit_gen",
|
|
|
|
":random",
|
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc_test(
|
|
|
|
name = "mock_distributions_test",
|
|
|
|
size = "small",
|
|
|
|
srcs = ["mock_distributions_test.cc"],
|
2020-04-07 19:28:30 +02:00
|
|
|
copts = ABSL_TEST_COPTS,
|
|
|
|
linkopts = ABSL_DEFAULT_LINKOPTS,
|
2019-11-20 22:55:25 +01:00
|
|
|
deps = [
|
|
|
|
":mock_distributions",
|
|
|
|
":mocking_bit_gen",
|
|
|
|
":random",
|
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2019-06-21 22:11:42 +02:00
|
|
|
cc_test(
|
|
|
|
name = "examples_test",
|
|
|
|
size = "small",
|
|
|
|
srcs = ["examples_test.cc"],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
|
|
|
linkopts = ABSL_DEFAULT_LINKOPTS,
|
|
|
|
deps = [
|
|
|
|
":random",
|
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc_test(
|
|
|
|
name = "seed_sequences_test",
|
|
|
|
size = "small",
|
|
|
|
srcs = ["seed_sequences_test.cc"],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
|
|
|
linkopts = ABSL_DEFAULT_LINKOPTS,
|
|
|
|
deps = [
|
|
|
|
":random",
|
|
|
|
":seed_sequences",
|
|
|
|
"//absl/random/internal:nonsecure_base",
|
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
BENCHMARK_TAGS = [
|
|
|
|
"benchmark",
|
|
|
|
"no_test_android_arm",
|
|
|
|
"no_test_android_arm64",
|
|
|
|
"no_test_android_x86",
|
|
|
|
"no_test_darwin_x86_64",
|
|
|
|
"no_test_ios_x86_64",
|
|
|
|
"no_test_loonix",
|
|
|
|
"no_test_msvc_x64",
|
|
|
|
"no_test_wasm",
|
|
|
|
]
|
|
|
|
|
|
|
|
# Benchmarks for various methods / test utilities
|
2019-08-08 00:25:26 +02:00
|
|
|
cc_binary(
|
2019-06-21 22:11:42 +02:00
|
|
|
name = "benchmarks",
|
2019-08-08 00:25:26 +02:00
|
|
|
testonly = 1,
|
2019-06-21 22:11:42 +02:00
|
|
|
srcs = [
|
|
|
|
"benchmarks.cc",
|
|
|
|
],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
|
|
|
linkopts = ABSL_DEFAULT_LINKOPTS,
|
|
|
|
tags = BENCHMARK_TAGS,
|
|
|
|
deps = [
|
|
|
|
":distributions",
|
|
|
|
":random",
|
|
|
|
":seed_sequences",
|
|
|
|
"//absl/base:core_headers",
|
|
|
|
"//absl/meta:type_traits",
|
|
|
|
"//absl/random/internal:fast_uniform_bits",
|
|
|
|
"//absl/random/internal:randen_engine",
|
|
|
|
"@com_github_google_benchmark//:benchmark_main",
|
|
|
|
],
|
|
|
|
)
|