Skip to main content

⚡ Conquer3D

High-Performance GPU-Accelerated Differentiable Geometry, Spatial Computing & Neural Rendering Toolbox

PyPI Version Docker Image License Python Version CUDA

Key FeaturesBenchmarksQuickstartInstallationReferences


🌟 Overview

Conquer3D is an ultra-fast, GPU-native computational geometry and differentiable spatial computing library engineered in PyTorch and CUDA. Designed from the ground up for 3D computer vision, generative AI, neural surface reconstruction, and differentiable rendering, Conquer3D delivers up to ~1.0 Billion faces/second isosurface extraction, exact CAD sharp crease preservation, and memory-efficient spatial acceleration structures.


✨ Features & Highlights

🔷 1. Isosurface Extraction & Meshing

  • Dual Marching Cubes (dmc): High-throughput manifold surface extraction with pure quad $(Q, 4)$ or triangle $(F, 3)$ outputs (~1.0B faces/s).
  • Dual Contouring (dc): Sharp CAD crease and mechanical corner preservation via GPU Quadratic Error Function (QEF) solving.
  • Marching Cubes Asymptotic (mca): Decider-enhanced Marching Cubes resolving topological face ambiguities on-the-fly.
  • Differentiable Marching Cubes (diff_marching_cubes): PyTorch autograd gradient backpropagation through levelsets into SDF and color fields.
  • Marching Tetrahedra (marching_tetrahedra, marching_tetrahedra_grid): Consistent isosurface extraction across unstructured meshes and regular cubic tetrahedral grids.

🚀 2. Hardware-Accelerated Spatial Acceleration

  • Triangle Mesh BVH (MeshBVH): GPU Bounding Volume Hierarchy for fast ray intersections, point projections, and signed distance queries.
  • Gaussian Splatting BVHs (GSBVH, PGSBVH): Spatial hierarchies specialized for 3D Gaussian Splatting and Periodic Gaussian Splatting.
  • Radix Linear BVH (BVH): High-throughput parallel bounding volume hierarchy for generic 3D primitives.
  • GPU KD-Tree (KDTree): Parallel nearest-neighbor search with $O(\log N)$ query complexity.
  • Morton Z-Curve Sorting (z_curve_sort): 64-bit Radix-sorted space-filling curve indexing for maximizing GPU cache locality.
  • Volumetric 3D Flood Fill: Fast GPU bitmask ray-boundary flood fill for sign evaluation across complex geometries.

🌐 3. Volumetric Grids & Surface Conversions

  • Narrow-Band Sparse Voxel Grids (create_voxel_grid_from_tmesh): Direct surface-confined voxelization bypassing dense 3D memory.
  • Multi-Mode Normal Field Generation: On-the-fly extraction of exact CAD face normals (mode=0), smooth vertex normals (mode=1), or SDF gradients (mode=2).
  • Mesh-to-Grid Pipelines (tmesh2voxel, tmesh2sparse): One-line conversion from 3D meshes to dense or sparse Signed Distance Fields.
  • Depth-Map Surface Carving (get_active_voxel_ids_from_depth): Multi-view RGB-D depth image backprojection into active voxel grids.
  • Sparse & Occupancy Conversions (sparse_coo2dense_occ, dense_occ2sparse_coo): Seamless conversion between sparse coordinate tensors and dense binary occupancy volumes.

🎨 4. Radiance Fields & Differentiable Primitives

  • 3D Gaussian Splatting Primitives (compute_gs_covi, compute_gs_aabb): GPU-accelerated covariance matrices, Mahalanobis distances, and tight AABB computation.
  • Periodic Gaussian Splatting (solve_pgs_cluster_tangency_radius): Spatial frequency-aware radiance field query operators.
  • Geometric Primitive Structures (Ray, Triangle, AABB, Edge): Vectorized GPU ray tracing and collision primitives.

📐 5. Geometric Distances & Volume Integrals

  • Exact Chamfer Distances (chamfer_distance, one_sided_chamfer_distance): Point-to-point and point-to-mesh geometric error evaluation.
  • Exact Hausdorff Distances (hausdorff_distance, one_sided_hausdorff_distance): Maximum deviation metrics for surface fidelity assessment.
  • Single-View Volume Integrals (single_view_volume_integral): Analytical divergence-theorem ray volume integration.

📦 6. 3D Data Loading, Augmentation & Collation

  • Benchmark 3D Datasets (Digit3D, PointDigit3D, RedWood, MeshDataset): Ready-to-use PyTorch dataset abstractions.
  • Standard Benchmark 3D Assets (conquer3d.data.assets): One-click download & caching for Stanford Bunny, Armadillo, Dragon, Lucy, Happy Buddha, Spot, Cow, Teapot, Suzanne, Fandisk, Iphigenia, and more.
  • Geometric Data Augmentations (Rotation, Scale, RandomRotation, RandomScale, Sequence, MeshSequence): Composable spatial transformation pipelines.
  • Custom PyTorch Batch Collation (bmesh_collate_fn, sparse_collate_fn): Efficient handling of variable-sized meshes and sparse tensors in DataLoaders.

🛠️ 7. Procedural Generation & File I/O

  • Procedural Mesh Generators (create_sphere, create_tetrahedra): Parametric geometric shape creation utilities.
  • High-Performance Mesh I/O (read_obj, write_obj, read_off): Native loading and saving for vertices, faces, and vertex colors.

⚡ Benchmarks

Empirical extraction performance on NVIDIA GeForce RTX 4090 on the Fandisk CAD model at $1024^3$ resolution (6.86M sparse vertices, 5.15M active voxels):

Algorithm Mesh Output Extracted Vertices Extracted Faces / Quads Latency (ms) Throughput Watertight
Dual Marching Cubes (DMC) Triangles 1,716,386 3,432,768 3.44 ms ~1.0B faces/s Yes
Dual Marching Cubes (DMC) Pure Quads 1,716,386 1,716,384 3.22 ms 533M quads/s Yes
Dual Contouring (DC + Normals) Triangles 1,716,386 3,432,768 4.79 ms 717M faces/s Yes
Marching Cubes Asymptotic (MCA) Triangles 1,716,384 3,432,764 16.42 ms 209M faces/s Yes

🚀 Quickstart Examples

1. Differentiable Dual Marching Cubes (DMC)

import torch
from conquer3d.data_structure import create_voxel_grid
from conquer3d.ops import dmc

# Create 3D Voxel Grid
grid_vertices, voxels, _ = create_voxel_grid(
    grid_min=[-1.0, -1.0, -1.0], grid_max=[1.0, 1.0, 1.0], res=[64, 64, 64], device="cuda"
)

# Evaluate SDF & Feature Colors with autograd tracking
sdf = (torch.norm(grid_vertices, dim=-1) - 0.6).requires_grad_(True)
colors = torch.rand((grid_vertices.shape[0], 3), device="cuda", requires_grad=True)

# Extract 2-manifold triangle mesh with Newton-Raphson levelset projection
verts, faces, out_colors = dmc(
    grid_vertices, voxels, sdf, colors=colors, iso=0.0, quad_split=True
)

# Extract pure quads (shape: (Q, 4))
quad_verts, quad_faces = dmc(grid_vertices, voxels, sdf, iso=0.0, quad_split=False)

# Backward gradient propagation
loss = verts.sum() + out_colors.sum()
loss.backward()
print(f"SDF Gradient Norm: {sdf.grad.norm().item():.4f}")

2. Dual Contouring (DC) with Sharp CAD Feature Preservation

import torch
from conquer3d.data.assets import Fandisk
from conquer3d.data_structure import TriangleMesh, create_voxel_grid_from_tmesh
from conquer3d.ops import dc

fandisk = Fandisk()
v, f, _ = fandisk.get()
tmesh = TriangleMesh(v.cuda(), f.cuda().int())

# Build sparse grid and extract exact CAD triangle normals (mode=0)
grid_vertices, voxels, _, grid_normals = create_voxel_grid_from_tmesh(
    grid_min=[-1.0, -1.0, -1.0], grid_max=[1.0, 1.0, 1.0],
    res=[256, 256, 256], tmesh=tmesh, pad=1, return_normals=True, normal_mode=0
)

# Query signed distance field via GPU Flood Fill
tmesh.build_flood_fill_data([-1.0, -1.0, -1.0], [1.0, 1.0, 1.0], [256, 256, 256])
_, _, _, sdfs = tmesh.query_points(grid_vertices, return_sdf=True, sign_mode=3)

# Extract sharp mesh using GPU Jacobi SVD Quadratic Error Function solver
verts, faces = dc(grid_vertices, voxels, sdfs, grid_normals=grid_normals, iso=0.0)
print(f"Extracted Sharp CAD Mesh: {verts.shape[0]:,} vertices, {faces.shape[0]:,} faces")

3. GPU Spatial Queries & Mesh BVH

import torch
from conquer3d.data_structure import TriangleMesh

# Query closest points, projections, and signed distances with Ray Casting / Flood Fill
query_pts = torch.randn((100000, 3), device="cuda")
query_ids, closest_tri_ids, projected_pts, sdfs = tmesh.query_points(
    query_pts, return_sdf=True, return_prj_pts=True, sign_mode=0
)

📦 Installation

1. Install via PyPI

pip install -U conquer3d

2. Docker (Recommended for instant GPU / CUDA environment)

# Pull and run the pre-built image
docker pull kohido/conquer3d:latest
docker run --rm --gpus all -it kohido/conquer3d:latest bash

Or build locally:

docker build -t conquer3d:latest .
docker run --rm --gpus all -it conquer3d:latest bash

3. Build from Source

Ensure you have a compatible CUDA toolkit ($\ge 12.0$) and PyTorch installed:

# Optional: Setup Conda environment
conda create -c conda-forge -n conquer3d python=3.10 gxx_linux-64=13 gcc_linux-64=13 sparsehash -y
conda activate conquer3d
conda install nvidia::cuda-toolkit==12.8.2 -y
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu128
pip install pybind11-stubgen

# Install Conquer3D
git clone https://github.com/KhoiDOO/conquer3d.git
cd conquer3d
pip install -e . --no-build-isolation

📚 Acknowledgements & References

For further theoretical background, GPU collision detection guides, and related literature, please visit:

  • Research Papers: Computational geometry, differential topology, and acceleration structure foundations.
  • Blog Posts: GPU spatial traversal, parallel BVH construction, and CUDA optimization guides.
  • Related Repositories: Open-source geometric deep learning ecosystem.
  • Books: Core computational geometry references.

📄 License

Conquer3D is licensed under the MIT License.

Download files

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

Source Distribution

conquer3d-0.6.5.tar.gz (5.4 MB view details)

Uploaded Source

File details

Details for the file conquer3d-0.6.5.tar.gz.

File metadata

  • Download URL: conquer3d-0.6.5.tar.gz
  • Upload date:
  • Size: 5.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.13

File hashes

Hashes for conquer3d-0.6.5.tar.gz
Algorithm Hash digest
SHA256 b30918f062b2cb4932c46fe0da2bdc928962574665f9abf933eeb75c99cad67c
MD5 3aafe60dabe235e7dc5b731a532e7848
BLAKE2b-256 be1c667461adf2342b408513f4ddf737d653cce601c3eea01b57c87130519acc

See more details on using hashes here.

Release history Release notifications | RSS feed

0.7.0

1 file

0.6.9

1 file

0.6.8

1 file

0.6.7

1 file

0.6.6

1 file

This release

0.6.5 This release

1 file

0.6.4

1 file

0.6.3

1 file

0.6.0

1 file

0.5.9

1 file

0.5.8

1 file

0.5.7

1 file

0.5.6

1 file

0.5.5

1 file

0.5.4

1 file

0.5.3

1 file

0.5.2

1 file

0.5.1

1 file

0.5.0

1 file

0.4.9

1 file

0.4.8

1 file

0.4.7

1 file

0.4.6

1 file

0.4.5

1 file

0.4.3

1 file

0.4.2

1 file

0.4.1

1 file

0.4.0

1 file

0.3.9

1 file

0.3.5

1 file

0.3.4

1 file

0.3.3

1 file

0.3.2

1 file

0.3.1

1 file

0.3.0

1 file

0.2.9

1 file

0.2.8

1 file

0.2.7

1 file

0.2.6

1 file

0.2.5

1 file

0.2.4

1 file

0.2.1

1 file

0.2.0

1 file

0.1.9

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page