explodethosebits 0.3.0__cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- etb/__init__.py +351 -0
- etb/__init__.pyi +976 -0
- etb/_etb.cpython-39-x86_64-linux-gnu.so +0 -0
- etb/_version.py +34 -0
- etb/py.typed +2 -0
- explodethosebits-0.3.0.dist-info/METADATA +405 -0
- explodethosebits-0.3.0.dist-info/RECORD +88 -0
- explodethosebits-0.3.0.dist-info/WHEEL +6 -0
- explodethosebits-0.3.0.dist-info/licenses/LICENSE +21 -0
- explodethosebits-0.3.0.dist-info/sboms/auditwheel.cdx.json +1 -0
- explodethosebits.libs/libcudart-c3a75b33.so.12.8.90 +0 -0
- include/etb/bit_coordinate.hpp +45 -0
- include/etb/bit_extraction.hpp +79 -0
- include/etb/bit_pruning.hpp +122 -0
- include/etb/config.hpp +284 -0
- include/etb/cuda/arch_optimizations.cuh +358 -0
- include/etb/cuda/blackwell_optimizations.cuh +300 -0
- include/etb/cuda/cuda_common.cuh +265 -0
- include/etb/cuda/etb_cuda.cuh +200 -0
- include/etb/cuda/gpu_memory.cuh +406 -0
- include/etb/cuda/heuristics_kernel.cuh +315 -0
- include/etb/cuda/path_generator_kernel.cuh +272 -0
- include/etb/cuda/prefix_pruner_kernel.cuh +370 -0
- include/etb/cuda/signature_kernel.cuh +328 -0
- include/etb/early_stopping.hpp +246 -0
- include/etb/etb.hpp +20 -0
- include/etb/heuristics.hpp +165 -0
- include/etb/memoization.hpp +285 -0
- include/etb/path.hpp +86 -0
- include/etb/path_count.hpp +87 -0
- include/etb/path_generator.hpp +175 -0
- include/etb/prefix_trie.hpp +339 -0
- include/etb/reporting.hpp +437 -0
- include/etb/scoring.hpp +269 -0
- include/etb/signature.hpp +190 -0
- include/gmock/gmock-actions.h +2297 -0
- include/gmock/gmock-cardinalities.h +159 -0
- include/gmock/gmock-function-mocker.h +518 -0
- include/gmock/gmock-matchers.h +5623 -0
- include/gmock/gmock-more-actions.h +658 -0
- include/gmock/gmock-more-matchers.h +120 -0
- include/gmock/gmock-nice-strict.h +277 -0
- include/gmock/gmock-spec-builders.h +2148 -0
- include/gmock/gmock.h +96 -0
- include/gmock/internal/custom/README.md +18 -0
- include/gmock/internal/custom/gmock-generated-actions.h +7 -0
- include/gmock/internal/custom/gmock-matchers.h +37 -0
- include/gmock/internal/custom/gmock-port.h +40 -0
- include/gmock/internal/gmock-internal-utils.h +487 -0
- include/gmock/internal/gmock-port.h +139 -0
- include/gmock/internal/gmock-pp.h +279 -0
- include/gtest/gtest-assertion-result.h +237 -0
- include/gtest/gtest-death-test.h +345 -0
- include/gtest/gtest-matchers.h +923 -0
- include/gtest/gtest-message.h +252 -0
- include/gtest/gtest-param-test.h +546 -0
- include/gtest/gtest-printers.h +1161 -0
- include/gtest/gtest-spi.h +250 -0
- include/gtest/gtest-test-part.h +192 -0
- include/gtest/gtest-typed-test.h +331 -0
- include/gtest/gtest.h +2321 -0
- include/gtest/gtest_pred_impl.h +279 -0
- include/gtest/gtest_prod.h +60 -0
- include/gtest/internal/custom/README.md +44 -0
- include/gtest/internal/custom/gtest-port.h +37 -0
- include/gtest/internal/custom/gtest-printers.h +42 -0
- include/gtest/internal/custom/gtest.h +37 -0
- include/gtest/internal/gtest-death-test-internal.h +307 -0
- include/gtest/internal/gtest-filepath.h +227 -0
- include/gtest/internal/gtest-internal.h +1560 -0
- include/gtest/internal/gtest-param-util.h +1026 -0
- include/gtest/internal/gtest-port-arch.h +122 -0
- include/gtest/internal/gtest-port.h +2481 -0
- include/gtest/internal/gtest-string.h +178 -0
- include/gtest/internal/gtest-type-util.h +220 -0
- lib/libetb_core.a +0 -0
- lib64/cmake/GTest/GTestConfig.cmake +33 -0
- lib64/cmake/GTest/GTestConfigVersion.cmake +43 -0
- lib64/cmake/GTest/GTestTargets-release.cmake +49 -0
- lib64/cmake/GTest/GTestTargets.cmake +139 -0
- lib64/libgmock.a +0 -0
- lib64/libgmock_main.a +0 -0
- lib64/libgtest.a +0 -0
- lib64/libgtest_main.a +0 -0
- lib64/pkgconfig/gmock.pc +10 -0
- lib64/pkgconfig/gmock_main.pc +10 -0
- lib64/pkgconfig/gtest.pc +9 -0
- lib64/pkgconfig/gtest_main.pc +10 -0
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
// Copyright 2015, Google Inc.
|
|
2
|
+
// All rights reserved.
|
|
3
|
+
//
|
|
4
|
+
// Redistribution and use in source and binary forms, with or without
|
|
5
|
+
// modification, are permitted provided that the following conditions are
|
|
6
|
+
// met:
|
|
7
|
+
//
|
|
8
|
+
// * Redistributions of source code must retain the above copyright
|
|
9
|
+
// notice, this list of conditions and the following disclaimer.
|
|
10
|
+
// * Redistributions in binary form must reproduce the above
|
|
11
|
+
// copyright notice, this list of conditions and the following disclaimer
|
|
12
|
+
// in the documentation and/or other materials provided with the
|
|
13
|
+
// distribution.
|
|
14
|
+
// * Neither the name of Google Inc. nor the names of its
|
|
15
|
+
// contributors may be used to endorse or promote products derived from
|
|
16
|
+
// this software without specific prior written permission.
|
|
17
|
+
//
|
|
18
|
+
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
19
|
+
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
20
|
+
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
21
|
+
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
22
|
+
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
23
|
+
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
24
|
+
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
25
|
+
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
26
|
+
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
27
|
+
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
28
|
+
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
29
|
+
|
|
30
|
+
// The Google C++ Testing and Mocking Framework (Google Test)
|
|
31
|
+
//
|
|
32
|
+
// This header file defines the GTEST_OS_* macro.
|
|
33
|
+
// It is separate from gtest-port.h so that custom/gtest-port.h can include it.
|
|
34
|
+
|
|
35
|
+
#ifndef GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_ARCH_H_
|
|
36
|
+
#define GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_ARCH_H_
|
|
37
|
+
|
|
38
|
+
// Determines the platform on which Google Test is compiled.
|
|
39
|
+
#ifdef __CYGWIN__
|
|
40
|
+
#define GTEST_OS_CYGWIN 1
|
|
41
|
+
#elif defined(__MINGW__) || defined(__MINGW32__) || defined(__MINGW64__)
|
|
42
|
+
#define GTEST_OS_WINDOWS_MINGW 1
|
|
43
|
+
#define GTEST_OS_WINDOWS 1
|
|
44
|
+
#elif defined _WIN32
|
|
45
|
+
#define GTEST_OS_WINDOWS 1
|
|
46
|
+
#ifdef _WIN32_WCE
|
|
47
|
+
#define GTEST_OS_WINDOWS_MOBILE 1
|
|
48
|
+
#elif defined(WINAPI_FAMILY)
|
|
49
|
+
#include <winapifamily.h>
|
|
50
|
+
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
|
|
51
|
+
#define GTEST_OS_WINDOWS_DESKTOP 1
|
|
52
|
+
#elif WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_PHONE_APP)
|
|
53
|
+
#define GTEST_OS_WINDOWS_PHONE 1
|
|
54
|
+
#elif WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP)
|
|
55
|
+
#define GTEST_OS_WINDOWS_RT 1
|
|
56
|
+
#elif WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_TV_TITLE)
|
|
57
|
+
#define GTEST_OS_WINDOWS_PHONE 1
|
|
58
|
+
#define GTEST_OS_WINDOWS_TV_TITLE 1
|
|
59
|
+
#else
|
|
60
|
+
// WINAPI_FAMILY defined but no known partition matched.
|
|
61
|
+
// Default to desktop.
|
|
62
|
+
#define GTEST_OS_WINDOWS_DESKTOP 1
|
|
63
|
+
#endif
|
|
64
|
+
#else
|
|
65
|
+
#define GTEST_OS_WINDOWS_DESKTOP 1
|
|
66
|
+
#endif // _WIN32_WCE
|
|
67
|
+
#elif defined __OS2__
|
|
68
|
+
#define GTEST_OS_OS2 1
|
|
69
|
+
#elif defined __APPLE__
|
|
70
|
+
#define GTEST_OS_MAC 1
|
|
71
|
+
#include <TargetConditionals.h>
|
|
72
|
+
#if TARGET_OS_IPHONE
|
|
73
|
+
#define GTEST_OS_IOS 1
|
|
74
|
+
#endif
|
|
75
|
+
#elif defined __DragonFly__
|
|
76
|
+
#define GTEST_OS_DRAGONFLY 1
|
|
77
|
+
#elif defined __FreeBSD__
|
|
78
|
+
#define GTEST_OS_FREEBSD 1
|
|
79
|
+
#elif defined __Fuchsia__
|
|
80
|
+
#define GTEST_OS_FUCHSIA 1
|
|
81
|
+
#elif defined(__GNU__)
|
|
82
|
+
#define GTEST_OS_GNU_HURD 1
|
|
83
|
+
#elif defined(__GLIBC__) && defined(__FreeBSD_kernel__)
|
|
84
|
+
#define GTEST_OS_GNU_KFREEBSD 1
|
|
85
|
+
#elif defined __linux__
|
|
86
|
+
#define GTEST_OS_LINUX 1
|
|
87
|
+
#if defined __ANDROID__
|
|
88
|
+
#define GTEST_OS_LINUX_ANDROID 1
|
|
89
|
+
#endif
|
|
90
|
+
#elif defined __MVS__
|
|
91
|
+
#define GTEST_OS_ZOS 1
|
|
92
|
+
#elif defined(__sun) && defined(__SVR4)
|
|
93
|
+
#define GTEST_OS_SOLARIS 1
|
|
94
|
+
#elif defined(_AIX)
|
|
95
|
+
#define GTEST_OS_AIX 1
|
|
96
|
+
#elif defined(__hpux)
|
|
97
|
+
#define GTEST_OS_HPUX 1
|
|
98
|
+
#elif defined __native_client__
|
|
99
|
+
#define GTEST_OS_NACL 1
|
|
100
|
+
#elif defined __NetBSD__
|
|
101
|
+
#define GTEST_OS_NETBSD 1
|
|
102
|
+
#elif defined __OpenBSD__
|
|
103
|
+
#define GTEST_OS_OPENBSD 1
|
|
104
|
+
#elif defined __QNX__
|
|
105
|
+
#define GTEST_OS_QNX 1
|
|
106
|
+
#elif defined(__HAIKU__)
|
|
107
|
+
#define GTEST_OS_HAIKU 1
|
|
108
|
+
#elif defined ESP8266
|
|
109
|
+
#define GTEST_OS_ESP8266 1
|
|
110
|
+
#elif defined ESP32
|
|
111
|
+
#define GTEST_OS_ESP32 1
|
|
112
|
+
#elif defined(__XTENSA__)
|
|
113
|
+
#define GTEST_OS_XTENSA 1
|
|
114
|
+
#elif defined(__hexagon__)
|
|
115
|
+
#define GTEST_OS_QURT 1
|
|
116
|
+
#elif defined(CPU_QN9090) || defined(CPU_QN9090HN)
|
|
117
|
+
#define GTEST_OS_NXP_QN9090 1
|
|
118
|
+
#elif defined(NRF52)
|
|
119
|
+
#define GTEST_OS_NRF52 1
|
|
120
|
+
#endif // __CYGWIN__
|
|
121
|
+
|
|
122
|
+
#endif // GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_ARCH_H_
|