Skip to main content

Efficient and parallelized algorithms for fine point cloud registration

Project description

small_gicp

small_gicp is a header-only C++ library providing efficient and parallelized algorithms for fine point cloud registration (ICP, Point-to-Plane ICP, GICP, VGICP, etc.). It is a refined and optimized version of its predecessor, fast_gicp, re-written from scratch with the following features.

  • Highly Optimized : The core registration algorithm implementation has been further optimized from fast_gicp, achieving up to 2x speed gain.
  • Fully parallerized : small_gicp offers parallel implementations of several preprocessing algorithms, making the entire registration process parallelized (e.g., Downsampling, KdTree construction, Normal/Covariance estimation). It supports OpenMP and Intel TBB as parallelism backends.
  • Minimum dependencies : The library requires only Eigen along with the bundled nanoflann and Sophus. Optionally, it supports a PCL registration interface for use as a drop-in replacement
  • Customizable : small_gicp allows the integration of any custom point cloud class into the registration algorithm via traits. Its template-based implementation enables customization of the registration process with original correspondence estimators and registration factors.
  • Python bindings : By being isolated from PCL, small_gicp's Python bindings are more portable and can be used seamlessly with other libraries such as Open3D.

Note that GPU-based implementations are NOT included in this package.

If you find this package useful for your project, please consider leaving a comment here. It would help the author receive recognition in his organization and keep working on this project. Please also cite the corresponding software paper if you use this software in an academic work.

status Build(Linux) macos Build(Windows) Test codecov

Requirements

This library uses C++17 features. The PCL interface is not compatible with PCL older than 1.11 that uses boost::shared_ptr.

Dependencies

Installation

C++

small_gicp is a header-only library. You can just download and drop it in your project directory to use it.

If you need only basic point cloud registration functions, you can build and install the helper library as follows.

sudo apt-get install libeigen3-dev libomp-dev

cd small_gicp
mkdir build && cd build
cmake .. -DCMAKE_BUILD_TYPE=Release && make -j
sudo make install

Python (Linux / Windows / MacOS)

Install from PyPI

pip install small_gicp

Install from source

cd small_gicp
pip install .

# [Optional (linux)] Install stubs for autocomplete (If you know a better way, let me know...)
pip install pybind11-stubgen
cd ~/.local/lib/python3.10/site-packages
pybind11-stubgen -o . --ignore-invalid=all small_gicp

Documentation

Usage (C++)

The following examples assume using namespace small_gicp is placed somewhere.

Using helper library (01_basic_registration.cpp)

The helper library (registration_helper.hpp) enables easily processing point clouds represented as std::vector<Eigen::Vector(3|4)(f|d)>.

Expand

small_gicp::align takes two point clouds (std::vectors of Eigen::Vector(3|4)(f|d)) and returns a registration result (estimated transformation and some information on the optimization result). This is the easiest way to use small_gicp but causes an overhead for duplicated preprocessing.

#include <small_gicp/registration/registration_helper.hpp>

std::vector<Eigen::Vector3d> target_points = ...;   // Any of Eigen::Vector(3|4)(f|d) can be used
std::vector<Eigen::Vector3d> source_points = ...;   // 

RegistrationSetting setting;
setting.num_threads = 4;                    // Number of threads to be used
setting.downsampling_resolution = 0.25;     // Downsampling resolution
setting.max_correspondence_distance = 1.0;  // Maximum correspondence distance between points (e.g., triming threshold)

Eigen::Isometry3d init_T_target_source = Eigen::Isometry3d::Identity();
RegistrationResult result = align(target_points, source_points, init_T_target_source, setting);

Eigen::Isometry3d T = result.T_target_source;  // Estimated transformation
size_t num_inliers = result.num_inliers;       // Number of inlier source points
Eigen::Matrix<double, 6, 6> H = result.H;      // Final Hessian matrix (6x6)

There is also a way to perform preprocessing and registration separately. This enables saving time for preprocessing in case registration is performed several times for the same point cloud (e.g., typical odometry estimation based on scan-to-scan matching).

#include <small_gicp/registration/registration_helper.hpp>

std::vector<Eigen::Vector3d> target_points = ...;   // Any of Eigen::Vector(3|4)(f|d) can be used
std::vector<Eigen::Vector3d> source_points = ...;   // 

int num_threads = 4;                    // Number of threads to be used
double downsampling_resolution = 0.25;  // Downsampling resolution
int num_neighbors = 10;                 // Number of neighbor points used for normal and covariance estimation

// std::pair<PointCloud::Ptr, KdTree<PointCloud>::Ptr>
auto [target, target_tree] = preprocess_points(target_points, downsampling_resolution, num_neighbors, num_threads);
auto [source, source_tree] = preprocess_points(source_points, downsampling_resolution, num_neighbors, num_threads);

RegistrationSetting setting;
setting.num_threads = num_threads;
setting.max_correspondence_distance = 1.0;  // Maximum correspondence distance between points (e.g., triming threshold)

Eigen::Isometry3d init_T_target_source = Eigen::Isometry3d::Identity();
RegistrationResult result = align(*target, *source, *target_tree, init_T_target_source, setting);

Eigen::Isometry3d T = result.T_target_source;  // Estimated transformation
size_t num_inliers = result.num_inliers;       // Number of inlier source points
Eigen::Matrix<double, 6, 6> H = result.H;      // Final Hessian matrix (6x6)

Using PCL interface (02_basic_registration_pcl.cpp)

The PCL interface allows using small_gicp as a drop-in replacement for pcl::Registration. It is also possible to directly feed pcl::PointCloud to algorithms implemented in small_gicp.

Expand
#include <small_gicp/pcl/pcl_registration.hpp>

pcl::PointCloud<pcl::PointXYZ>::Ptr raw_target = ...;
pcl::PointCloud<pcl::PointXYZ>::Ptr raw_source = ...;

// small_gicp::voxelgrid_downsampling can directly operate on pcl::PointCloud.
pcl::PointCloud<pcl::PointXYZ>::Ptr target = voxelgrid_sampling_omp(*raw_target, 0.25);
pcl::PointCloud<pcl::PointXYZ>::Ptr source = voxelgrid_sampling_omp(*raw_source, 0.25);

// RegistrationPCL is derived from pcl::Registration and has mostly the same interface as pcl::GeneralizedIterativeClosestPoint.
RegistrationPCL<pcl::PointXYZ, pcl::PointXYZ> reg;
reg.setNumThreads(4);
reg.setCorrespondenceRandomness(20);
reg.setMaxCorrespondenceDistance(1.0);
reg.setVoxelResolution(1.0);
reg.setRegistrationType("VGICP");  // or "GICP" (default = "GICP")

// Set input point clouds.
reg.setInputTarget(target);
reg.setInputSource(source);

// Align point clouds.
auto aligned = pcl::make_shared<pcl::PointCloud<pcl::PointXYZ>>();
reg.align(*aligned);

// Swap source and target and align again.
// This is useful when you want to re-use preprocessed point clouds for successive registrations (e.g., odometry estimation).
reg.swapSourceAndTarget();
reg.align(*aligned);

It is also possible to directly feed pcl::PointCloud to small_gicp::Registration. Because all preprocessed data are exposed in this way, you can easily re-use them to obtain the best efficiency.

#include <small_gicp/pcl/pcl_point.hpp>
#include <small_gicp/pcl/pcl_point_traits.hpp>

pcl::PointCloud<pcl::PointXYZ>::Ptr raw_target = ...;
pcl::PointCloud<pcl::PointXYZ>::Ptr raw_source = ...;

// Downsample points and convert them into pcl::PointCloud<pcl::PointCovariance>.
pcl::PointCloud<pcl::PointCovariance>::Ptr target = voxelgrid_sampling_omp<pcl::PointCloud<pcl::PointXYZ>, pcl::PointCloud<pcl::PointCovariance>>(*raw_target, 0.25);
pcl::PointCloud<pcl::PointCovariance>::Ptr source = voxelgrid_sampling_omp<pcl::PointCloud<pcl::PointXYZ>, pcl::PointCloud<pcl::PointCovariance>>(*raw_source, 0.25);

// Estimate covariances of points.
const int num_threads = 4;
const int num_neighbors = 20;
estimate_covariances_omp(*target, num_neighbors, num_threads);
estimate_covariances_omp(*source, num_neighbors, num_threads);

// Create KdTree for target and source.
auto target_tree = std::make_shared<KdTree<pcl::PointCloud<pcl::PointCovariance>>>(target, KdTreeBuilderOMP(num_threads));
auto source_tree = std::make_shared<KdTree<pcl::PointCloud<pcl::PointCovariance>>>(source, KdTreeBuilderOMP(num_threads));

Registration<GICPFactor, ParallelReductionOMP> registration;
registration.reduction.num_threads = num_threads;
registration.rejector.max_dist_sq = 1.0;

// Align point clouds. Note that the input point clouds are pcl::PointCloud<pcl::PointCovariance>.
auto result = registration.align(*target, *source, *target_tree, Eigen::Isometry3d::Identity());

Using Registration template (03_registration_template.cpp)

If you want to fine-control and customize the registration process, use small_gicp::Registration template that allows modifying the inner algorithms and parameters.

Expand
#include <small_gicp/ann/kdtree_omp.hpp>
#include <small_gicp/points/point_cloud.hpp>
#include <small_gicp/factors/gicp_factor.hpp>
#include <small_gicp/util/normal_estimation_omp.hpp>
#include <small_gicp/registration/reduction_omp.hpp>
#include <small_gicp/registration/registration.hpp>

std::vector<Eigen::Vector3d> target_points = ...;   // Any of Eigen::Vector(3|4)(f|d) can be used
std::vector<Eigen::Vector3d> source_points = ...;   // 

int num_threads = 4;
double downsampling_resolution = 0.25;
int num_neighbors = 10;
double max_correspondence_distance = 1.0;

// Convert to small_gicp::PointCloud
auto target = std::make_shared<PointCloud>(target_points);
auto source = std::make_shared<PointCloud>(source_points);

// Downsampling
target = voxelgrid_sampling_omp(*target, downsampling_resolution, num_threads);
source = voxelgrid_sampling_omp(*source, downsampling_resolution, num_threads);

// Create KdTree
auto target_tree = std::make_shared<KdTree<PointCloud>>(target, KdTreeBuilderOMP(num_threads));
auto source_tree = std::make_shared<KdTree<PointCloud>>(source, KdTreeBuilderOMP(num_threads));

// Estimate point covariances
estimate_covariances_omp(*target, *target_tree, num_neighbors, num_threads);
estimate_covariances_omp(*source, *source_tree, num_neighbors, num_threads);

// GICP + OMP-based parallel reduction
Registration<GICPFactor, ParallelReductionOMP> registration;
registration.reduction.num_threads = num_threads;
registration.rejector.max_dist_sq = max_correspondence_distance * max_correspondence_distance;

// Align point clouds
Eigen::Isometry3d init_T_target_source = Eigen::Isometry3d::Identity();
auto result = registration.align(*target, *source, *target_tree, init_T_target_source);

Eigen::Isometry3d T = result.T_target_source;  // Estimated transformation
size_t num_inliers = result.num_inliers;       // Number of inlier source points
Eigen::Matrix<double, 6, 6> H = result.H;      // Final Hessian matrix (6x6)

See 03_registration_template.cpp for more detailed customization examples.

Cookbook

Usage (Python) basic_registration.py

Expand

Example A : Perform registration with numpy arrays

# Align two point clouds using various ICP-like algorithms.
# 
# Parameters
# ----------
# target_points : NDArray[np.float64]
#     Nx3 or Nx4 matrix representing the target point cloud.
# source_points : NDArray[np.float64]
#     Nx3 or Nx4 matrix representing the source point cloud.
# init_T_target_source : np.ndarray[np.float64]
#     4x4 matrix representing the initial transformation from target to source.
# registration_type : str = 'GICP'
#     Type of registration algorithm to use ('ICP', 'PLANE_ICP', 'GICP', 'VGICP').
# voxel_resolution : float = 1.0
#     Resolution of voxels used for correspondence search (used only in VGICP).
# downsampling_resolution : float = 0.25
#     Resolution for downsampling the point clouds.
# max_correspondence_distance : float = 1.0
#     Maximum distance for matching points between point clouds.
# num_threads : int = 1
#     Number of threads to use for parallel processing.
# 
# Returns
# -------
# RegistrationResult
#     Object containing the final transformation matrix and convergence status.
result = small_gicp.align(target_raw_numpy, source_raw_numpy, downsampling_resolution=0.25)

result.T_target_source  # Estimated transformation (4x4 numpy array)
result.converged        # If true, the optimization converged successfully
result.iterations       # Number of iterations the optimization took
result.num_inliers      # Number of inlier points
result.H                # Final Hessian matrix (6x6 matrix)
result.b                # Final information vector (6D vector)
result.e                # Final error (float)

Example B : Perform preprocessing and registration separately

# Preprocess point cloud (downsampling, kdtree construction, and normal/covariance estimation)
#
# Parameters
# ----------
# points : NDArray[np.float64]
#     Nx3 or Nx4 matrix representing the point cloud.
# downsampling_resolution : float = 0.1
#     Resolution for downsampling the point clouds.
# num_neighbors : int = 20
#     Number of neighbor points to usefor point normal/covariance estimation.
# num_threads : int = 1
#     Number of threads to use for parallel processing.
# 
# Returns
# -------
# PointCloud
#     Downsampled point cloud with estimated normals and covariances.
# KdTree
#     KdTree for the downsampled point cloud
target, target_tree = small_gicp.preprocess_points(target_raw_numpy, downsampling_resolution=0.25)
source, source_tree = small_gicp.preprocess_points(source_raw_numpy, downsampling_resolution=0.25)

# `target` and `source` are small_gicp.PointCloud with the following methods
target.size()           # Number of points
target.points()         # Nx4 numpy array   [x, y, z, 1] x N
target.normals()        # Nx4 numpy array   [nx, ny, nz, 0] x N
target.covs()           # Array of 4x4 covariance matrices

#  Align two point clouds using specified ICP-like algorithms, utilizing point cloud and KD-tree inputs.
#
#  Parameters
#  ----------
#  target : PointCloud::ConstPtr
#      Pointer to the target point cloud.
#  source : PointCloud::ConstPtr
#      Pointer to the source point cloud.
#  target_tree : KdTree<PointCloud>::ConstPtr, optional
#      Pointer to the KD-tree of the target for nearest neighbor search. If nullptr, a new tree is built.
#  init_T_target_source : NDArray[np.float64]
#      4x4 matrix representing the initial transformation from target to source.
#  registration_type : str = 'GICP'
#      Type of registration algorithm to use ('ICP', 'PLANE_ICP', 'GICP').
#  max_correspondence_distance : float = 1.0
#      Maximum distance for corresponding point pairs.
#  num_threads : int = 1
#      Number of threads to use for computation.
# 
#  Returns
#  -------
#  RegistrationResult
#      Object containing the final transformation matrix and convergence status.
result = small_gicp.align(target, source, target_tree)

Example C : Perform each of preprocessing steps one-by-one

# Convert numpy arrays (Nx3 or Nx4) to small_gicp.PointCloud
target_raw = small_gicp.PointCloud(target_raw_numpy)
source_raw = small_gicp.PointCloud(source_raw_numpy)

# Downsampling
target = small_gicp.voxelgrid_sampling(target_raw, 0.25)
source = small_gicp.voxelgrid_sampling(source_raw, 0.25)

# KdTree construction
target_tree = small_gicp.KdTree(target)
source_tree = small_gicp.KdTree(source)

# Estimate covariances
small_gicp.estimate_covariances(target, target_tree)
small_gicp.estimate_covariances(source, source_tree)

# Align point clouds
result = small_gicp.align(target, source, target_tree)

Example D: Example with Open3D

target_o3d = open3d.io.read_point_cloud('small_gicp/data/target.ply').paint_uniform_color([0, 1, 0])
source_o3d = open3d.io.read_point_cloud('small_gicp/data/source.ply').paint_uniform_color([0, 0, 1])

target, target_tree = small_gicp.preprocess_points(numpy.asarray(target_o3d.points), downsampling_resolution=0.25)
source, source_tree = small_gicp.preprocess_points(numpy.asarray(source_o3d.points), downsampling_resolution=0.25)
result = small_gicp.align(target, source, target_tree)

source_o3d.transform(result.T_target_source)
open3d.visualization.draw_geometries([target_o3d, source_o3d])

Cookbook

Running examples

C++

cd small_gicp
mkdir build && cd build
cmake .. -DBUILD_EXAMPLES=ON && make -j

cd ..
./build/01_basic_registration
./build/02_basic_registration_pcl
./build/03_registration_template

Python

cd small_gicp
pip install .

python3 src/example/basic_registration.py

Benchmark

Processing speed comparison between small_gicp and Open3D (youtube). small_comp

Downsampling

  • Single-threaded small_gicp::voxelgrid_sampling is about 1.3x faster than pcl::VoxelGrid.
  • Multi-threaded small_gicp::voxelgrid_sampling_tbb (6 threads) is about 3.2x faster than pcl::VoxelGrid.
  • small_gicp::voxelgrid_sampling provides accurate downsampling results that are nearly identical to those of pcl::VoxelGrid, while pcl::ApproximateVoxelGrid can produce spurious points (up to 2x more points).
  • small_gicp::voxelgrid_sampling can handle larger point clouds with finer voxel resolutions compared to pcl::VoxelGrid. For a point cloud with a width of 1000m, the minimum voxel resolution can be 0.5 mm.

downsampling_comp

KdTree construction

  • Multi-threaded implementation (TBB and OMP) can be up to 6x faster than the single-threaded version. The single-thread version performs almost equivalently to nanoflann.
  • The new KdTree implementation demonstrates good scalability due to its well-balanced task assignment.
  • This benchmark compares only the construction time (query time is not included). Nearest neighbor queries are included and evaluated in the following odometry estimation evaluation.

kdtree_time

Odometry estimation

  • Single-thread small_gicp::GICP is about 2.4x and 1.9x faster than pcl::GICP and fast_gicp::GICP, respectively.
  • small_gicp::(GICP|VGICP) demonstrates better multi-threaded scalability compared to fast_gicp::(GICP|VGICP).
  • small_gicp::GICP parallelized with TBB flow graph shows excellent scalability in many-threads scenarios (~128 threads), though with some latency degradation.
  • Outputs of small_gicp::GICP are almost identical to those of fast_gicp::GICP.

odometry_time

License

This package is released under the MIT license.

If you find this package useful for your project, please consider leaving a comment here. It would help the author receive recognition in his organization and keep working on this project.

Please also cite the following article if you use this software in an academic work.

@article{small_gicp,
author = {Kenji Koide},
title = {{small\_gicp: Efficient and parallel algorithms for point cloud registration}},
journal = {Journal of Open Source Software},
month = aug,
number = {100},
pages = {6948},
volume = {9},
year = {2024},
doi = {10.21105/joss.06948}
}

Contact

Kenji Koide, National Institute of Advanced Industrial Science and Technology (AIST)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

small_gicp-1.0.1.tar.gz (2.6 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

small_gicp-1.0.1-cp314-cp314-win_amd64.whl (764.8 kB view details)

Uploaded CPython 3.14Windows x86-64

small_gicp-1.0.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (379.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

small_gicp-1.0.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (351.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

small_gicp-1.0.1-cp314-cp314-macosx_14_0_arm64.whl (462.7 kB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

small_gicp-1.0.1-cp313-cp313-win_amd64.whl (737.2 kB view details)

Uploaded CPython 3.13Windows x86-64

small_gicp-1.0.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (379.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

small_gicp-1.0.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (350.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

small_gicp-1.0.1-cp313-cp313-macosx_14_0_arm64.whl (462.1 kB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

small_gicp-1.0.1-cp312-cp312-win_amd64.whl (737.2 kB view details)

Uploaded CPython 3.12Windows x86-64

small_gicp-1.0.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (378.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

small_gicp-1.0.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (350.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

small_gicp-1.0.1-cp312-cp312-macosx_14_0_arm64.whl (462.0 kB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

small_gicp-1.0.1-cp311-cp311-win_amd64.whl (734.9 kB view details)

Uploaded CPython 3.11Windows x86-64

small_gicp-1.0.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (379.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

small_gicp-1.0.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (350.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

small_gicp-1.0.1-cp311-cp311-macosx_14_0_arm64.whl (460.4 kB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

small_gicp-1.0.1-cp310-cp310-win_amd64.whl (733.8 kB view details)

Uploaded CPython 3.10Windows x86-64

small_gicp-1.0.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (377.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

small_gicp-1.0.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (350.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

small_gicp-1.0.1-cp310-cp310-macosx_14_0_arm64.whl (459.3 kB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

File details

Details for the file small_gicp-1.0.1.tar.gz.

File metadata

  • Download URL: small_gicp-1.0.1.tar.gz
  • Upload date:
  • Size: 2.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for small_gicp-1.0.1.tar.gz
Algorithm Hash digest
SHA256 e0b1a03a87da154b53b489cce7079b5be02ba17723f89c4161f8311b564ca0b1
MD5 2cffbc81dffe7c4d4e009bac05b0df4b
BLAKE2b-256 41cf4d18f9b0dd6f8c6e963eb1f07a00684b298269f80418332805766974a027

See more details on using hashes here.

Provenance

The following attestation bundles were made for small_gicp-1.0.1.tar.gz:

Publisher: wheels.yml on koide3/small_gicp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file small_gicp-1.0.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: small_gicp-1.0.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 764.8 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for small_gicp-1.0.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f34675d48d413494a189c709d6e6462dd4ff10af3722eb7ff30d2f5716390d41
MD5 114bc96266afd7eacb8111639bc3ca0c
BLAKE2b-256 2d9bd4cb2e6a2cc04dad2b500e8fc15f7910f33e3360dad239979fb817d6729b

See more details on using hashes here.

Provenance

The following attestation bundles were made for small_gicp-1.0.1-cp314-cp314-win_amd64.whl:

Publisher: wheels.yml on koide3/small_gicp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file small_gicp-1.0.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for small_gicp-1.0.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ee04e2705d0411e4e1e4280159fd1020a441d8bc9678317aabf23a6edf355040
MD5 a4f47b0997e991e2cbf2dac6fefcdaf2
BLAKE2b-256 023ec03d57509029f8484d8c79e65a8e3ef461be2a0e5ab0cf2d6a547377da09

See more details on using hashes here.

Provenance

The following attestation bundles were made for small_gicp-1.0.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on koide3/small_gicp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file small_gicp-1.0.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for small_gicp-1.0.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 95866daad53e50e614b102d774746fff09df4f11de6a54c0342173ab4b7c1a6a
MD5 9937bc35c438d3c4b45c94eadfc09e12
BLAKE2b-256 509fcb6029083dedec96a31c41e8e7bd16a528d8589c0925654b7e16bc525315

See more details on using hashes here.

Provenance

The following attestation bundles were made for small_gicp-1.0.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on koide3/small_gicp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file small_gicp-1.0.1-cp314-cp314-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for small_gicp-1.0.1-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 9375e962dacb22c7771a71c4505f55dd3f1d6183c5e8263e368cdb4c3600a1a2
MD5 10c1ca82cfcd5980b141eca6a24716b6
BLAKE2b-256 d6fc492a24bcc1a217dd021dfb51f45176d5117381b7e324c5557a42df9a2e81

See more details on using hashes here.

Provenance

The following attestation bundles were made for small_gicp-1.0.1-cp314-cp314-macosx_14_0_arm64.whl:

Publisher: wheels.yml on koide3/small_gicp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file small_gicp-1.0.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: small_gicp-1.0.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 737.2 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for small_gicp-1.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e0078d6de45ae8a0ad5ecb65d19c0bc1a99bd1d5bdf9ef5b4617e9c1c3dfafd2
MD5 378d3664c58f377c2d1f4bf40c832225
BLAKE2b-256 661d6b0e5b7c4a540b6b317719326e59c0715069e6e3278b95df953c9fdbcafd

See more details on using hashes here.

Provenance

The following attestation bundles were made for small_gicp-1.0.1-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on koide3/small_gicp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file small_gicp-1.0.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for small_gicp-1.0.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 60f717ee4b570ef515efe748f430a4a0e6b4518f2d1af8a9353f889dadd90e9a
MD5 cfa54a938e1062aba9ca440c101d2703
BLAKE2b-256 e8ec6773322e23f298b41fa98d563b735ffe0e3a60967d9709ceec20d3f07240

See more details on using hashes here.

Provenance

The following attestation bundles were made for small_gicp-1.0.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on koide3/small_gicp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file small_gicp-1.0.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for small_gicp-1.0.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d6eee0ed36852a931457918461cec144fb42499691b9bb02f2c2404915f8ab7b
MD5 c4a2ba843eab1aa08e22f8a60dc8b1b4
BLAKE2b-256 506c870398e1cca107cd808b7094b2f1592372d0063db84875323587b47968fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for small_gicp-1.0.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on koide3/small_gicp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file small_gicp-1.0.1-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for small_gicp-1.0.1-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 80cdd5289e00acb9b211f2625b6180e9966dcab00f71c9d8acb23f79233b6e9e
MD5 6993186b2f8c25a6fd12c0bbfc15b0c6
BLAKE2b-256 c9dc99dc6ba28adb5e6fa9d43d90606cbe37d4c00ff1645f27d751d858ad8470

See more details on using hashes here.

Provenance

The following attestation bundles were made for small_gicp-1.0.1-cp313-cp313-macosx_14_0_arm64.whl:

Publisher: wheels.yml on koide3/small_gicp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file small_gicp-1.0.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: small_gicp-1.0.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 737.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for small_gicp-1.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e9812b1d758808811538dccf0b433181d3464fb9444a932b4b0ec40dab00f6fa
MD5 9496bea7d0789f21956b6b58dd1c485b
BLAKE2b-256 1e70d8ff59d76a1f7a722eeaa35128d2b224238ffdb7ee205add90602327d648

See more details on using hashes here.

Provenance

The following attestation bundles were made for small_gicp-1.0.1-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on koide3/small_gicp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file small_gicp-1.0.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for small_gicp-1.0.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cb08400204c468acf5145503f5ab8c0bd495871d335975638916e64b32cf8452
MD5 e5a80989d706dc6cfac843136d44a0b1
BLAKE2b-256 bc83330a2efaa8335871501f10ce42f3c53a2c904904a16b615ccb95c70be13b

See more details on using hashes here.

Provenance

The following attestation bundles were made for small_gicp-1.0.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on koide3/small_gicp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file small_gicp-1.0.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for small_gicp-1.0.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8b870571667a9b7c003de4579234f7f00917a80bb254d6ccc498c0a4ca30e819
MD5 f242bbbb5dfda52781858afda7e8092a
BLAKE2b-256 e83a6c80117a7f222f9f1e54c0dab8ddd120b7d97e4f8f654d7eb48fa285bfc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for small_gicp-1.0.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on koide3/small_gicp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file small_gicp-1.0.1-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for small_gicp-1.0.1-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 80aca65629c61a3c24b7602944c90b777261fcc883774d643be452808f9f046d
MD5 afbb3218a179e385d74f67a3c9354aa1
BLAKE2b-256 7d250a951e5cc734e825ee64f04545a06908d377012cf9d829ff2712c3804d1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for small_gicp-1.0.1-cp312-cp312-macosx_14_0_arm64.whl:

Publisher: wheels.yml on koide3/small_gicp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file small_gicp-1.0.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: small_gicp-1.0.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 734.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for small_gicp-1.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7a1569b1f43b7aa4b37808c8d04bc9c22cc4352c3380447a476ab66396146b0c
MD5 f8894badba7309f7cd9fa7c4ccfb4300
BLAKE2b-256 823b429d4e88f208f2d629935f63c805bc00c66a43b489b7c20662ea9ad4db2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for small_gicp-1.0.1-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on koide3/small_gicp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file small_gicp-1.0.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for small_gicp-1.0.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a0570d1d97e8b5b72c8e7302d2aefe740036ad790e4931af81ed3951b5b0956f
MD5 34a71298eb01a65b8f307e345456024e
BLAKE2b-256 091abae902dfce4b504500bddf1d390ebe1c048901806159df2e0a665b8f20d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for small_gicp-1.0.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on koide3/small_gicp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file small_gicp-1.0.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for small_gicp-1.0.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8cd292278b16401ce76e4d485bc854522bf047e21496fa684b8ff9a80510610a
MD5 2abff32951b1d5825a2b65381350e0d2
BLAKE2b-256 e6bae45bd591b7b6100ec04996ffd99d9a5dad00b6ab052b424cdfc3ca282ce2

See more details on using hashes here.

Provenance

The following attestation bundles were made for small_gicp-1.0.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on koide3/small_gicp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file small_gicp-1.0.1-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for small_gicp-1.0.1-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 48460c54feb66497641c5b09dbc6b67b1bfd4cdaf6622092f795fce343ba9e4e
MD5 e11d648222e36d8ea8588b9a8dd13bf7
BLAKE2b-256 20647b51be15e79ec3f2038371ae67f8a1175dda5ba9dba8dc6fb3ddf68cfd96

See more details on using hashes here.

Provenance

The following attestation bundles were made for small_gicp-1.0.1-cp311-cp311-macosx_14_0_arm64.whl:

Publisher: wheels.yml on koide3/small_gicp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file small_gicp-1.0.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: small_gicp-1.0.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 733.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for small_gicp-1.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4d62a762b5827ce251cbcad9f0ac07023c1fec1f1de8545df552778dd96558ae
MD5 599d9838093468195274fbc92812be86
BLAKE2b-256 081c07e714c57d8369b0ae206b0da31009d5e035d3bbb0c47fd8fd0155e31fb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for small_gicp-1.0.1-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on koide3/small_gicp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file small_gicp-1.0.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for small_gicp-1.0.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 85fc0df28db88538eb70122a04c521608ba694f74078024b8cdedd1ef936158c
MD5 8e9cd63ad6900827b4e4e603e45aa287
BLAKE2b-256 0fe263329d5c9cd191bf2c0df82bf71ef055ed5fd5b3ea791eac5e56d424888a

See more details on using hashes here.

Provenance

The following attestation bundles were made for small_gicp-1.0.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on koide3/small_gicp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file small_gicp-1.0.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for small_gicp-1.0.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0a68868802b1a37dd945beb9b941678a294ab2a775e3d4887bb6d010c11ca544
MD5 0347ce4450091a6e73bfd832346456ff
BLAKE2b-256 d18c0f37327b616212ba82e064cc3f89da17de4b2b3511d7fbdee421960e7f08

See more details on using hashes here.

Provenance

The following attestation bundles were made for small_gicp-1.0.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on koide3/small_gicp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file small_gicp-1.0.1-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for small_gicp-1.0.1-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 30693c5f9420cc1b3392a7bd104dcc2f66d279739558d2f3b625ae8c4acc48be
MD5 cfb717e2d77b4788909c04d93f624d2a
BLAKE2b-256 b78202f41587aa3e1f5401eb945eb3f721cc5198c3c68848d81a2f6fa7cb4eec

See more details on using hashes here.

Provenance

The following attestation bundles were made for small_gicp-1.0.1-cp310-cp310-macosx_14_0_arm64.whl:

Publisher: wheels.yml on koide3/small_gicp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page