Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

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 targets every GPU architecture your toolkit supports, plus PTX for the newest, which is why it takes a while. Building for just your own card is far faster:

# 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.0rc1.tar.gz (2.1 MB view details)

Uploaded Source

File details

Details for the file falcata-1.0.0rc1.tar.gz.

File metadata

  • Download URL: falcata-1.0.0rc1.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.0rc1.tar.gz
Algorithm Hash digest
SHA256 1ed37be5fd9417806d0aff1cbef01cd421f779f20ef55d931a7af54b0fa84c48
MD5 30a9fd1e443f6dbc368e0fe6a0c0ed80
BLAKE2b-256 06582971d7d00eed54de33f3a409d916b1f8e8e34c321646b4e34703ec0377d7

See more details on using hashes here.

Release history Release notifications | RSS feed

1.0.4

2 files

1.0.3

2 files

1.0.2

2 files

1.0.0

2 files

This release

1.0.0rc1 This release

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