Skip to main content

Lightweight gradient boosting for Apple Silicon with an MPS/Metal backend

Project description

MPSBoost

PyPI Python

MPSBoost is an early-stage gradient boosting project for Apple Silicon. Its current accelerated backend uses custom Metal compute kernels for squared-error gradients and two-stage histogram construction while keeping one deterministic tree-building implementation shared with the CPU oracle.

Development status: 0.2.0b0 is the first GPU hot-path beta milestone. It supports dense numeric regression with a real MPS training path, split-scan and partition kernels, histogram subtraction, buffer reuse, and documented performance boundaries.

Installation

python -m pip install mpsboost

Accelerated releases provide prebuilt Apple Silicon wheels; normal users will not need a heavyweight framework, package manager, CMake, or a local Metal shader compiler.

Estimator-style API

import mpsboost as mps

model = mps.MPSBoostRegressor(
    n_estimators=200,
    learning_rate=0.05,
    max_depth=6,
    device="mps",
)

model.fit(X_train, y_train)
prediction = model.predict(X_test)
model.save_model("model.mpsb")

restored = mps.MPSBoostRegressor(device="mps")
restored.load_model("model.mpsb")

Backend diagnostics

The native backend exposes non-sensitive device diagnostics:

import mpsboost as mps

print(mps.__version__)
print(mps.is_available())
print(mps.system_info())

Project principles

  • Familiar XGBoost/scikit-learn-style Python entry points.
  • device="mps" as the stable user-facing Apple GPU backend name.
  • Custom Metal kernels for tree-specific irregular computation.
  • Prebuilt wheels and no heavyweight Python runtime dependency.
  • Explicit errors instead of silent CPU fallback.
  • End-to-end benchmarks, including preprocessing and synchronization.

Status

The public API currently includes MPSBoostRegressor, is_available, system_info, and __version__. Training supports dense finite float32/float64-compatible data, squared error, deterministic quantization, depth-limited histogram trees, model save/load, and explicit device="mps" or diagnostic device="cpu" selection.

The checked-in S6 benchmark records both regressions and wins. On the M2 Ultra validation machine, small end-to-end training remains slower on MPS, while the gbdt-large-wide scenario reached a 1.629x median speedup with maximum prediction difference around 5.4e-6 versus the CPU oracle.

Classification, missing values, sparse matrices, categorical features, sampling, early stopping, public GPU prediction, and full third-party API compatibility are not implemented in this milestone. Small datasets are expected to be slower on the GPU because fixed device setup and synchronization costs dominate; the checked-in benchmark report preserves this regression region alongside larger wins.

Independence notice

MPSBoost is an independent open-source project. It is not affiliated with, endorsed by, or sponsored by Apple Inc., the XGBoost project, or the scikit-learn project. Apple, Metal, and Metal Performance Shaders may be trademarks of Apple Inc.

License

Apache-2.0

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

mpsboost-0.2.0b0-cp313-cp313-macosx_13_0_arm64.whl (200.5 kB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

mpsboost-0.2.0b0-cp310-cp310-macosx_13_0_arm64.whl (196.3 kB view details)

Uploaded CPython 3.10macOS 13.0+ ARM64

File details

Details for the file mpsboost-0.2.0b0-cp313-cp313-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for mpsboost-0.2.0b0-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 74d550bc18ef21b2a5ca28aa6ae08b6d3ca490716dbc7af5882446c2ec5c7585
MD5 0f15690e83eae5bd5f3a87065aaa7c6b
BLAKE2b-256 86f577c6f1c63b31a0aa4b30d537e75df217ce7227897815a6d9238ce649c5ec

See more details on using hashes here.

File details

Details for the file mpsboost-0.2.0b0-cp310-cp310-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for mpsboost-0.2.0b0-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 98816428163d5593f3bedf09c70ac1c16a0ff9f1625396b50475ed0ef689f1c3
MD5 ec8cab94e9912d54e81c36ae8f6d8d58
BLAKE2b-256 810d1e34e9745b2c35d279de663887a059d4dd6d899e931dc263ccdf8fa2ebbc

See more details on using hashes here.

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