a15364ce4d
-- d35c72d705155dcd89a92835103540f14c643d10 by Gennadiy Rozental <rogeeff@google.com>: helpxml changed to report types of flags with built-in value type. PiperOrigin-RevId: 275131440 -- f3478792943d7dd40a6ef6083a8e5d374f43a65e by Abseil Team <absl-team@google.com>: Add space padding tests for hex conversions. PiperOrigin-RevId: 275120155 -- 7c2e4725403e173660f33f94af686a75d3722936 by Andy Soffer <asoffer@google.com>: Fix https://github.com/abseil/abseil-cpp/issues/379 by renaming `roundup` to `round_up` PiperOrigin-RevId: 275106110 -- 84cb30d6ee509961ac4359cfdda1360973b9527d by Laramie Leavitt <lar@google.com>: Move random_internal::wide_multiply into a file by the same name. PiperOrigin-RevId: 275059359 -- 06d691a8c187b5d899e7863784b23bdcfd580cb2 by Abseil Team <absl-team@google.com>: Add missing "return" keyword. PiperOrigin-RevId: 275036408 GitOrigin-RevId: d35c72d705155dcd89a92835103540f14c643d10 Change-Id: Id837b4de6c9cfe18f0a088363754bfe389df985b
406 lines
11 KiB
Text
406 lines
11 KiB
Text
#
|
|
# 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.
|
|
#
|
|
|
|
# ABSL random-number generation libraries.
|
|
|
|
load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library", "cc_test")
|
|
load(
|
|
"//absl:copts/configure_copts.bzl",
|
|
"ABSL_DEFAULT_COPTS",
|
|
"ABSL_DEFAULT_LINKOPTS",
|
|
"ABSL_TEST_COPTS",
|
|
)
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
licenses(["notice"])
|
|
|
|
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",
|
|
"distribution_format_traits.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",
|
|
"//absl/base:core_headers",
|
|
"//absl/meta:type_traits",
|
|
"//absl/random/internal:distribution_impl",
|
|
"//absl/random/internal:distributions",
|
|
"//absl/random/internal:fast_uniform_bits",
|
|
"//absl/random/internal:fastmath",
|
|
"//absl/random/internal:iostream_state_saver",
|
|
"//absl/random/internal:traits",
|
|
"//absl/random/internal:uniform_helper",
|
|
"//absl/random/internal:wide_multiply",
|
|
"//absl/strings",
|
|
"//absl/types:span",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "seed_gen_exception",
|
|
srcs = ["seed_gen_exception.cc"],
|
|
hdrs = ["seed_gen_exception.h"],
|
|
copts = ABSL_DEFAULT_COPTS,
|
|
linkopts = ABSL_DEFAULT_LINKOPTS,
|
|
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",
|
|
],
|
|
)
|
|
|
|
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",
|
|
"//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,
|
|
linkopts = ABSL_DEFAULT_LINKOPTS,
|
|
deps = [
|
|
":distributions",
|
|
":random",
|
|
"//absl/base:raw_logging_internal",
|
|
"//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 = "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",
|
|
"//absl/base:core_headers",
|
|
"//absl/base:raw_logging_internal",
|
|
"//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 = "discrete_distribution_test",
|
|
size = "medium",
|
|
srcs = [
|
|
"discrete_distribution_test.cc",
|
|
],
|
|
copts = ABSL_TEST_COPTS,
|
|
linkopts = ABSL_DEFAULT_LINKOPTS,
|
|
deps = [
|
|
":distributions",
|
|
":random",
|
|
"//absl/base:raw_logging_internal",
|
|
"//absl/random/internal:distribution_test_util",
|
|
"//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",
|
|
"//absl/base:raw_logging_internal",
|
|
"//absl/container:flat_hash_map",
|
|
"//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 = "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",
|
|
"//absl/base:raw_logging_internal",
|
|
"//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 = "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",
|
|
"//absl/base:raw_logging_internal",
|
|
"//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",
|
|
"//absl/base:raw_logging_internal",
|
|
"//absl/random/internal:distribution_test_util",
|
|
"//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",
|
|
"//absl/base:raw_logging_internal",
|
|
"//absl/random/internal:distribution_test_util",
|
|
"//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",
|
|
"//absl/base:raw_logging_internal",
|
|
"//absl/random/internal:distribution_test_util",
|
|
"//absl/random/internal:sequence_urbg",
|
|
"//absl/strings",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
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
|
|
cc_binary(
|
|
name = "benchmarks",
|
|
testonly = 1,
|
|
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",
|
|
],
|
|
)
|