Skip to main content

GPU-first gradient boosted decision trees.

Falcataria moluccana — the falcata — is one of the fastest-growing trees on earth. This one grows them faster too.

Falcata is a CUDA-native GBDT library: a leaf-wise learner whose training loop was rebuilt around batched, level-parallel GPU kernels rather than one split at a time.

What makes it fast

  • Hybrid level-batched growth — whole levels of sibling pairs are scored, synchronized and applied in one launch each instead of per split, turning a latency-bound loop into a throughput-bound one, with leaf-wise-identical trees.

  • CUDA-graph level loops — the per-level launch sequence is captured once and replayed by a device-side controller, removing host round-trips.

  • NVRTC runtime JIT — construct kernels are specialized at runtime to the actual data shape, self-tested against the ahead-of-time kernel, and promoted only if bit-identical.

  • Per-tree compact column view — with any feature_fraction < 1, only the sampled columns are materialized for histogram construction; the win scales with the excluded fraction (~3.4× end-to-end at feature_fraction = 0.1 on wide, low-cardinality data).

  • GPU-native dataset construction — dense binning, row-data build and EFB pre-checking run on the device; CuPy and __cuda_array_interface__ inputs are ingested without a host round-trip.

  • Quantized training, two waysquant_mode=stochastic is the speed end: 4-bin gradients with seeded stochastic rounding; quant_mode=fixedpoint is the near-lossless end: deterministic rounding with an internal outlier-robust gradient scale. Bin counts are overridable with quant_bins; both modes are bit-reproducible run to run.

  • GPU inference via NVIDIA FIL — with cuML installed, Booster.predict() transparently runs on the Forest Inference Library; CuPy arrays stay on the device end to end.

  • An execution planner — shape-conditional kernel choices are resolved once from the data and parameters (cuda_plan=auto), every decision guaranteed bit-identical and individually overridable.

Every optimization above is required to be bit-identical to the reference path, and that is enforced mechanically: a 38-cell regression lattice of (config × data-shape) training cells fingerprinted by model md5 runs on a real GPU on every commit, alongside plan-flip equality cells, validity assertions, metric floors and a perf gate.

Install

pip install falcata

That builds the CUDA library from source, so you need the CUDA toolkit (>= 11.0), CMake >= 3.28, a C++17 compiler and Python >= 3.10. Nothing else: the source distribution vendors every dependency, so no git clone and no submodule dance.

The build detects the GPU(s) in the machine and compiles only for those (15–20 minutes on typical hardware). When no GPU is visible at build time it targets every architecture the toolkit supports instead, which takes several times longer. To pick an architecture explicitly:

# RTX 5090 = 120, RTX 4090 = 89, A100 = 80, T4 = 75
pip install falcata --config-settings=cmake.define.CMAKE_CUDA_ARCHITECTURES=89

There is a CPU build, though it is not what this library is for:

pip install falcata --config-settings=cmake.define.USE_CUDA=OFF

Multi-GPU training additionally needs NCCL and its headers (libnccl-dev on Debian/Ubuntu):

pip install falcata \
  --config-settings=cmake.define.USE_NCCL=ON \
  --config-settings=cmake.define.BUILD_WITH_SHARED_NCCL=ON

Installing the wheel also installs a lightgbm import shim. If the target environment already has stock LightGBM, uninstall it first or use a fresh environment — pip will not report the collision.

Quick start

import falcata as flc

ds = flc.Dataset(X_train, label=y_train, params={"device_type": "cuda"})
model = flc.train(
    {
        "objective": "regression",
        "device_type": "cuda",
        "num_leaves": 255,
        "quant_mode": "stochastic",   # none | stochastic | fixedpoint
        "cuda_precision": "fp32",     # fp64 (default) | fp32
        "cuda_plan": "auto",          # the planner picks the kernels
    },
    ds,
    num_boost_round=1000,
)

Compatibility with LightGBM

Falcata began as a fork of LightGBM and deliberately stays interoperable at the data boundaries:

  • Models written by Falcata load in stock LightGBM (and vice versa) with bit-identical predictions — verified in CI.

  • Binary datasets (.dataset) interchange in both directions.

  • Parameter names are unchanged; Falcata’s additions (quant_mode, cuda_precision, cuda_plan) are new names upstream simply ignores.

  • The historical LGBM_* C API names remain as aliases for FLC_*. The Python package is import falcata only — code written against import lightgbm needs its import changed, nothing else.

License

MIT. Falcata derives from LightGBM (copyright Microsoft Corporation and the LightGBM developers, MIT); that copyright is retained. Falcata is not affiliated with, endorsed by, or supported by Microsoft or the LightGBM maintainers.

Download files

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

Source Distribution

falcata-1.0.3.tar.gz (2.1 MB view details)

Uploaded Source

Built Distribution

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

falcata-1.0.3-py3-none-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (92.5 MB view details)

Uploaded Python 3manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

File details

Details for the file falcata-1.0.3.tar.gz.

File metadata

  • Download URL: falcata-1.0.3.tar.gz
  • Upload date:
  • Size: 2.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.3

File hashes

Hashes for falcata-1.0.3.tar.gz
Algorithm Hash digest
SHA256 bf8fa5c162e3801123efcd7007c70c861b435b43f2c91ef7b751c2e994426672
MD5 d4eed8e5abbd0f324c0f9e6213c2cc43
BLAKE2b-256 7133008f7f1e42064864080bb7ba7710aee0d533c0bf5341e0bbe004bc7e5933

See more details on using hashes here.

File details

Details for the file falcata-1.0.3-py3-none-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for falcata-1.0.3-py3-none-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 db0bf22d4bbfdcf04b7b97a074867dd1e2c08bdb15740bec54e71a2392f86ecf
MD5 3c7219834e100f7c0ed8e79fd8130a6f
BLAKE2b-256 9f82a12f269bd37c1d87f58004b85b21eb37e0f077a8069aac6bc57bbd54df54

See more details on using hashes here.

Release history Release notifications | RSS feed

1.0.4

2 files

This release

1.0.3 This release

2 files

1.0.2

2 files

1.0.0

2 files

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