Pure-Python radial integration for area X-ray detectors (MIDAS) — DetectorMapper + CSR integration + streaming server, CPU/GPU selectable
Project description
midas-integrate
Pure-Python radial integration for area X-ray detectors. A drop-in, pip-installable replacement for the MIDAS C/CUDA radial integration pipeline — no compilers, no native libraries, no CMake.
pip install midas-integrate
What's in the box
| C/CUDA source | Python module |
|---|---|
MapperCore.c, DetectorGeometry.c, DetectorMapper.c |
midas_integrate.detector_mapper, midas_integrate.geometry |
IntegratorFitPeaksGPUStream.cu (GPU streaming) |
midas_integrate.kernels, midas_integrate.server, midas_integrate.pipeline |
IntegratorZarrOMP.c (CPU OMP, bilinear) |
midas_integrate.kernels (mode='bilinear') |
PeakFit.c |
midas_integrate.peakfit |
PeakFitIO.c |
midas_integrate.peak_io |
Map.bin / nMap.bin |
midas_integrate.bin_io |
CPU/GPU selection
Everything that touches arrays accepts a device argument that is forwarded
to PyTorch. CPU and CUDA are first-class:
from midas_integrate import build_csr, integrate, profile_1d, load_map
pixmap = load_map('Map.bin', 'nMap.bin')
geom_cpu = build_csr(pixmap, n_r=990, n_eta=72, n_pixels_y=1475, n_pixels_z=1679, device='cpu')
geom_cuda = build_csr(pixmap, ..., device='cuda')
import torch
img = torch.from_numpy(image_2d)
profile = profile_1d(integrate(img, geom_cuda, mode='bilinear'), geom_cuda)
Three integration modes (full parity with C codes)
mode |
Equivalent C kernel | Use when |
|---|---|---|
'floor' |
integrate_noMapMask in IntegratorFitPeaksGPUStream.cu |
streaming, max throughput |
'bilinear' |
pixel loop in IntegratorZarrOMP.c lines 1733–1744 |
offline analysis, max accuracy |
'gradient' |
GradientCorrection=1 branch in the GPU stream |
strong tilt + small R |
CLI
Three entry points mirror the C binaries:
# 1. Build Map.bin / nMap.bin from a parameter file (one-shot, slow):
midas-detector-mapper params.txt -j 8
# 2. Integrate one frame (one-shot, fast):
midas-integrate params.txt --image frame.tif --device cuda
# 3. Streaming socket server (matches the C wire protocol on port 60439):
midas-integrate-server params.txt --device cuda --num-streams 4
Numerical parity
- DetectorMapper output (
Map.bin/nMap.bin): byte-equivalent to the C version (entry counts, sums offracandareaWeightper bin agree to ULP; entry order within a bin may differ). - Per-frame integration: float32 ULP-level (median 1.7e-8 relative error
vs the C/CUDA
IntegratorFitPeaksGPUStreambinary on PILATUS3 2M with CeO₂ data; max 2.1e-7 relative). - Peak fitting: same model (pseudo-Voigt + global background, SNIP background subtraction), different optimizer (scipy LM vs NLopt Nelder-Mead). Fit parameters typically agree to ~1e-5 relative on noisy real data.
Performance (PILATUS3 2M, 1475×1679, NVIDIA H100)
| Throughput | |
|---|---|
| C MIDAS GPU stream (per the paper) | ~1,600 fps |
| midas-integrate (PyTorch CSR, FP32, CUDA) | ~3,250 fps |
| midas-integrate (PyTorch CSR, FP64, CPU) | ~675 fps |
| C MIDAS CPU (per the paper) | ~262 fps |
| pyFAI CSR-cython (per the paper) | ~7 fps |
Using a calibration from midas-calibrate-v2
midas-calibrate-v2 (the differentiable Bayesian rewrite of the
calibration framework) exposes parameters under canonical names
(iso_R2, iso_R4, iso_R6, a1/phi1, …, a6/phi6) instead of
v1's p0..p14. Two routes exist for getting a v2 result into this
package:
# (a) In-memory: drop the v2 unpacked dict straight onto a v1 template
from midas_integrate.params import parse_params
from midas_integrate.compat.from_v2 import params_from_v2_unpacked
template = parse_params("seed_paramstest.txt") # carries binning, masks, …
ip = params_from_v2_unpacked(res.unpacked, template=template)
# (b) High-level: spline + δr_k sidecars + paramstest in one call
from midas_calibrate_v2.compat.to_integrate import to_integrate_params
ip = to_integrate_params(
res, # PVCalibrationResult or FourStageResult
template=template,
output_dir="./integrate_in",
ring_d_spacing_A=ring_d, ring_two_theta_deg=ring_tt, # for δr_k JSON
)
What the adapter does for you:
- Remaps
iso_R*/a*/phi*to v1'sp0..p14slots. - Carries
Lsd,BC_y/BC_z,tx/ty/tz,Parallax,pxY/pxZ,Wavelengththrough unchanged. - Warns when v2-only parameters are dropped (per-panel blocks → use
midas_calibrate_v2.compat.to_v1.write_panel_shifts_file; per-ringδr_k→ use the JSON sidecar fromto_integrate_paramsand apply at the peak-fit / Rietveld stage, since v1's radial map has no per-ring concept). - For a
FourStageResult, evaluates the Stage 4 thin-plate spline on the detector grid and writes the binaryΔR(Y, Z)lookup thatIntegrationParams.ResidualCorrectionMapconsumes.
The cache hash (Map.bin / nMap.bin) covers all 15 distortion
coefficients and Parallax / Wavelength unconditionally, so changing
any v2 parameter will correctly invalidate stale caches.
Requirements
- Python ≥ 3.9
- numpy, scipy, torch, tifffile, h5py, joblib
CUDA support is automatic if your installed torch has CUDA. macOS Metal (MPS)
works for the integration kernel; sparse-CSR support on MPS is partial as of
torch 2.7.
License
BSD-3-Clause. See LICENSE.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file midas_integrate-0.4.2.tar.gz.
File metadata
- Download URL: midas_integrate-0.4.2.tar.gz
- Upload date:
- Size: 96.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d5b252350b7db2ca97ed484f3649b3625f936d57bb3fcaad2ac455d3553c570
|
|
| MD5 |
d7be48571cb0a066f3686cb534e93038
|
|
| BLAKE2b-256 |
bfb3b093c0bfff0a48bed3a4302bbc9038eadedc2522dd9e39a1f6449ae9bc4f
|
Provenance
The following attestation bundles were made for midas_integrate-0.4.2.tar.gz:
Publisher:
python-packages.yml on marinerhemant/MIDAS
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
midas_integrate-0.4.2.tar.gz -
Subject digest:
3d5b252350b7db2ca97ed484f3649b3625f936d57bb3fcaad2ac455d3553c570 - Sigstore transparency entry: 1602527685
- Sigstore integration time:
-
Permalink:
marinerhemant/MIDAS@c8f79b0cf4f366b1fb95bff9f727294b850e02fe -
Branch / Tag:
refs/tags/midas-integrate-v0.4.2 - Owner: https://github.com/marinerhemant
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-packages.yml@c8f79b0cf4f366b1fb95bff9f727294b850e02fe -
Trigger Event:
release
-
Statement type:
File details
Details for the file midas_integrate-0.4.2-py3-none-any.whl.
File metadata
- Download URL: midas_integrate-0.4.2-py3-none-any.whl
- Upload date:
- Size: 80.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c1bd0ee71370c384a3e192bd83a5f47307f842accedc8aa56daa63cff441c38
|
|
| MD5 |
f5dcfffebac2e845a1fdb6e84999ce68
|
|
| BLAKE2b-256 |
67be2c9df8a940260a697adeb124c3361f8c51b3f3b7b4f4225dbddef7fa82a9
|
Provenance
The following attestation bundles were made for midas_integrate-0.4.2-py3-none-any.whl:
Publisher:
python-packages.yml on marinerhemant/MIDAS
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
midas_integrate-0.4.2-py3-none-any.whl -
Subject digest:
1c1bd0ee71370c384a3e192bd83a5f47307f842accedc8aa56daa63cff441c38 - Sigstore transparency entry: 1602527798
- Sigstore integration time:
-
Permalink:
marinerhemant/MIDAS@c8f79b0cf4f366b1fb95bff9f727294b850e02fe -
Branch / Tag:
refs/tags/midas-integrate-v0.4.2 - Owner: https://github.com/marinerhemant
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-packages.yml@c8f79b0cf4f366b1fb95bff9f727294b850e02fe -
Trigger Event:
release
-
Statement type: