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
lib64/pkgconfig/gmock.pc
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
libdir=/tmp/tmp61al4it4/wheel/platlib/lib64
|
|
2
|
+
includedir=/tmp/tmp61al4it4/wheel/platlib/include
|
|
3
|
+
|
|
4
|
+
Name: gmock
|
|
5
|
+
Description: GoogleMock (without main() function)
|
|
6
|
+
Version: 1.14.0
|
|
7
|
+
URL: https://github.com/google/googletest
|
|
8
|
+
Requires: gtest = 1.14.0
|
|
9
|
+
Libs: -L${libdir} -lgmock -lpthread
|
|
10
|
+
Cflags: -I${includedir} -DGTEST_HAS_PTHREAD=1
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
libdir=/tmp/tmp61al4it4/wheel/platlib/lib64
|
|
2
|
+
includedir=/tmp/tmp61al4it4/wheel/platlib/include
|
|
3
|
+
|
|
4
|
+
Name: gmock_main
|
|
5
|
+
Description: GoogleMock (with main() function)
|
|
6
|
+
Version: 1.14.0
|
|
7
|
+
URL: https://github.com/google/googletest
|
|
8
|
+
Requires: gmock = 1.14.0
|
|
9
|
+
Libs: -L${libdir} -lgmock_main -lpthread
|
|
10
|
+
Cflags: -I${includedir} -DGTEST_HAS_PTHREAD=1
|
lib64/pkgconfig/gtest.pc
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
libdir=/tmp/tmp61al4it4/wheel/platlib/lib64
|
|
2
|
+
includedir=/tmp/tmp61al4it4/wheel/platlib/include
|
|
3
|
+
|
|
4
|
+
Name: gtest
|
|
5
|
+
Description: GoogleTest (without main() function)
|
|
6
|
+
Version: 1.14.0
|
|
7
|
+
URL: https://github.com/google/googletest
|
|
8
|
+
Libs: -L${libdir} -lgtest -lpthread
|
|
9
|
+
Cflags: -I${includedir} -DGTEST_HAS_PTHREAD=1
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
libdir=/tmp/tmp61al4it4/wheel/platlib/lib64
|
|
2
|
+
includedir=/tmp/tmp61al4it4/wheel/platlib/include
|
|
3
|
+
|
|
4
|
+
Name: gtest_main
|
|
5
|
+
Description: GoogleTest (with main() function)
|
|
6
|
+
Version: 1.14.0
|
|
7
|
+
URL: https://github.com/google/googletest
|
|
8
|
+
Requires: gtest = 1.14.0
|
|
9
|
+
Libs: -L${libdir} -lgtest_main -lpthread
|
|
10
|
+
Cflags: -I${includedir} -DGTEST_HAS_PTHREAD=1
|