Skip to main content

Neutron Resonance Resolved Imaging Data Analysis System — Python bindings

Project description

NEREIDS

Neutron rEsonance REsolved Imaging Data Analysis System

DOI CI PyPI crates.io License Docs API

NEREIDS is a Rust-based library for neutron resonance imaging at the VENUS beamline, Spallation Neutron Source (SNS), Oak Ridge National Laboratory. It provides end-to-end analysis for time-of-flight neutron transmission imaging: input hyperspectral TOF data, output spatially resolved isotopic composition maps.

Features

  • R-matrix cross-sections -- Reich-Moore, Breit-Wigner (single- and multi-level), R-Matrix Limited (LRF=7), Coulomb channels
  • Unresolved Resonance Region -- energy-averaged Hauser-Feshbach cross-sections (width-fluctuation correction planned, not yet implemented)
  • Doppler broadening -- Free Gas Model (crystal-lattice model planned, not yet implemented)
  • Resolution broadening -- Gaussian (channel width + flight path) and tabulated instrument functions
  • ENDF nuclear data -- automatic retrieval and caching (ENDF/B-VIII.0 and VIII.1 from NNDC with IAEA fallback; JEFF-3.3, JENDL-5, TENDL-2023, and CENDL-3.2 from IAEA)
  • Spectrum fitting -- Levenberg-Marquardt and Poisson/KL divergence optimizers with analytical Jacobians
  • Spatial mapping -- parallel per-pixel fitting via rayon for 2D isotopic density maps
  • Detectability analysis -- energy-window optimization for trace element sensitivity
  • Python bindings -- full API via PyO3, pip-installable
  • Desktop GUI -- egui application with Guided and Studio modes

Installation

Python (recommended)

pip install nereids

Requires Python >= 3.10. Prebuilt wheels are available for Linux (x86_64), macOS (ARM), and Windows (x86_64).

Rust

Add individual crates to your Cargo.toml:

[dependencies]
nereids-core = "0.1"
nereids-endf = "0.1"
nereids-physics = "0.1"

GUI application

macOS (Homebrew):

brew tap ornlneutronimaging/nereids
brew install --cask nereids

macOS/Linux (pip):

pip install nereids-gui
nereids-gui

MCP server for AI agents

NEREIDS can run as a local Model Context Protocol server so AI agents can inspect neutron-resonance data, fit spectra, and run spatial density-map workflows through the Python bindings.

pip install "nereids[mcp]"
nereids-mcp

Example MCP client configuration:

{
  "mcpServers": {
    "nereids": {
      "command": "nereids-mcp"
    }
  }
}

The server exposes low-level physics tools (load_endf, compute_cross_sections, compute_transmission, detect_isotopes) and workflow tools for agent-driven processing:

  • extract_resonance_manifest(dataset_path) reads an sMCP-style manifest.
  • validate_resonance_dataset(dataset_path) checks data, isotope, and resolution configuration.
  • process_resonance_dataset(dataset_path) runs a single_spectrum or density_map workflow and writes compact .npz result artifacts.

Datasets can include manifest_intermediate.md, smcp_manifest.md, nereids_manifest.md, nereids_mcp.json, or analysis.json. Markdown manifests use frontmatter between --- delimiters; JSON frontmatter is supported without extra YAML dependencies.

See the MCP server guide for supported data kinds, manifest fields, NeXus histogram handling, and output artifacts.

Minimal spectrum manifest:

---
{
  "name": "venus-hf-spectrum",
  "tool": "nereids",
  "physics": "neutron-resonance",
  "analysis": {
    "mode": "single_spectrum",
    "data": {
      "kind": "counts_npz",
      "path": "aggregated_hf_120min.npz",
      "pc_ratio": 5.98
    },
    "isotopes": [
      {"isotope": "Hf-177", "endf_file": "Hf-177.endf", "initial_density": 1e-5}
    ],
    "fit": {"solver": "lm", "fit_domain": "transmission", "max_iter": 100},
    "resolution": {
      "kind": "gaussian",
      "flight_path_m": 25.0,
      "delta_t_us": 0.5,
      "delta_l_m": 0.005
    },
    "output": {"directory": "output"}
  }
}
---

From source

git clone https://github.com/ornlneutronimaging/NEREIDS.git
cd NEREIDS
cargo build --workspace --release
cargo test --workspace --exclude nereids-python

Python bindings require maturin:

pip install maturin
maturin develop --release -m bindings/python/Cargo.toml

Quick Start (Python)

import numpy as np
import nereids

# Load ENDF resonance data
u238 = nereids.load_endf(92, 238)
fe56 = nereids.load_endf(26, 56)

# Energy grid (1-200 eV covers the strong U-238 resonances)
energies = np.linspace(1.0, 200.0, 5000)

# Forward model: transmission through a mixed sample
transmission = nereids.forward_model(
    energies,
    isotopes=[(u238, 0.005), (fe56, 0.01)],  # (data, areal density in at/barn)
    temperature_k=293.6,
)

# Spatial mapping with typed API
trans_3d = transmission[:, None, None] * np.ones((1, 4, 4))  # (n_e, ny, nx)
sigma_3d = np.full_like(trans_3d, 0.01)
data = nereids.from_transmission(trans_3d, sigma_3d)
result = nereids.spatial_map_typed(data, energies, [u238, fe56])

print(f"Converged: {result.n_converged}/{result.n_total} pixels")

See the examples/notebooks/ directory for 18 tutorial notebooks covering foundations, building blocks, workflows, and applications.

Architecture

NEREIDS is organized as a Rust workspace with layered crates:

endf-mat              ENDF MAT lookup tables (no deps of its own; used by core + endf)

nereids-core          Shared types, physical constants, isotope registry
    |
nereids-endf          ENDF file retrieval, parsing, resonance data
    |
nereids-physics       Cross-sections, broadening, transmission model
    |
nereids-fitting       LM and Poisson/KL optimizers
    |
nereids-io            TIFF/NeXus I/O, TOF normalization, rebinning
    |
nereids-pipeline      End-to-end orchestration, spatial mapping (rayon)
    |
    +-- nereids-python    PyO3 Python bindings (bindings/python)
    +-- nereids-gui       egui desktop application (apps/gui)
Crate Description
endf-mat ENDF MAT number lookup, element symbols, natural isotopic abundances
nereids-core Core types, physical constants, traits
nereids-endf ENDF file retrieval, caching, resonance parameter parsing
nereids-physics Cross-section calculation, broadening, transmission model
nereids-io TIFF/NeXus data I/O, VENUS normalization
nereids-fitting Optimization engine (LM, Poisson/KL)
nereids-pipeline End-to-end orchestration and spatial mapping
nereids-python PyO3 Python bindings for Jupyter
nereids-gui egui desktop application

Documentation

Troubleshooting

Log files

The NEREIDS desktop GUI (nereids-gui) writes daily-rotated log files to a platform-specific data directory, retaining the last 7 days. Each day's file is named nereids-gui.YYYY-MM-DD.log (UTC date):

Platform Log directory
macOS ~/Library/Application Support/NEREIDS/logs/
Linux ~/.local/share/NEREIDS/logs/ (honours $XDG_DATA_HOME)
Windows %APPDATA%\NEREIDS\logs\

From the running app, use Help → Open log folder (reveals today's log file in your platform's file manager) or Help → Copy log path to copy the full path to the clipboard.

The default log level is info. Override with the NEREIDS_LOG environment variable (or the standard RUST_LOG), e.g.:

NEREIDS_LOG=debug nereids-gui
NEREIDS_LOG="nereids_pipeline=trace,info" nereids-gui

NEREIDS_LOG takes precedence over RUST_LOG. Panics are captured to the log file with a backtrace before the process exits — please attach the relevant log file when reporting bugs.

Citation

If you use NEREIDS in your research, please cite:

@software{nereids2026,
  author    = {Zhang, Chen and Bilheux, Jean-Christophe and Tang, Shiming and Bilheux, Hassina},
  title     = {{NEREIDS}: Neutron Resonance Resolved Imaging Data Analysis System},
  year      = {2026},
  publisher = {Zenodo},
  doi       = {10.5281/zenodo.18973054},
  url       = {https://doi.org/10.5281/zenodo.18973054}
}

Contributing

See CONTRIBUTING.md for development setup, coding standards, and the PR process.

License

MIT. See LICENSE for details.

Copyright (c) 2025-2026, UT-Battelle, LLC (Oak Ridge National Laboratory).

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

nereids-0.3.0.tar.gz (1.0 MB view details)

Uploaded Source

Built Distributions

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

nereids-0.3.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (5.4 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

nereids-0.3.0-cp315-cp315t-manylinux_2_28_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

nereids-0.3.0-cp315-cp315-manylinux_2_28_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

nereids-0.3.0-cp314-cp314t-manylinux_2_28_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

nereids-0.3.0-cp314-cp314-win_amd64.whl (6.4 MB view details)

Uploaded CPython 3.14Windows x86-64

nereids-0.3.0-cp314-cp314-manylinux_2_28_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

nereids-0.3.0-cp314-cp314-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

nereids-0.3.0-cp313-cp313-win_amd64.whl (6.4 MB view details)

Uploaded CPython 3.13Windows x86-64

nereids-0.3.0-cp313-cp313-manylinux_2_28_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

nereids-0.3.0-cp313-cp313-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

nereids-0.3.0-cp312-cp312-win_amd64.whl (6.4 MB view details)

Uploaded CPython 3.12Windows x86-64

nereids-0.3.0-cp312-cp312-manylinux_2_28_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

nereids-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

nereids-0.3.0-cp311-cp311-win_amd64.whl (6.4 MB view details)

Uploaded CPython 3.11Windows x86-64

nereids-0.3.0-cp311-cp311-manylinux_2_28_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

nereids-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

nereids-0.3.0-cp310-cp310-win_amd64.whl (6.4 MB view details)

Uploaded CPython 3.10Windows x86-64

nereids-0.3.0-cp310-cp310-manylinux_2_28_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

nereids-0.3.0-cp310-cp310-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file nereids-0.3.0.tar.gz.

File metadata

  • Download URL: nereids-0.3.0.tar.gz
  • Upload date:
  • Size: 1.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for nereids-0.3.0.tar.gz
Algorithm Hash digest
SHA256 426749d45b0992c831f721806b2365b919ede8f15cc7f24783b9a24871919a75
MD5 de814d96b9be68ef006d7829784bd31c
BLAKE2b-256 547b8707929c59ad0c40b5a263b41e18c7c0bb8e237b6e656db9cc7f5086dec8

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.3.0.tar.gz:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nereids-0.3.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nereids-0.3.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2fe9227b5d9683377626e43e22b3ec831b1aeb9564973f5ecab4cc95ca442128
MD5 fcc075eb48962f846b1677074dc59d69
BLAKE2b-256 8a72a1d3b3162c80d198c872201e6abd813f7e79e13d8a1a375cfa539729f8e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.3.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nereids-0.3.0-cp315-cp315t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nereids-0.3.0-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 82f5229161fa35376cfa3dfc4e01fc33df61a7c2a97c156ba483c317214f6946
MD5 dbe1594839c80c215d59efab1dab5aef
BLAKE2b-256 3564adf6efd3d4c82059320b303a52862814aedd1a3d00a3ebd8515087779c30

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.3.0-cp315-cp315t-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nereids-0.3.0-cp315-cp315-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nereids-0.3.0-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7202e788b5130ff819a783e98a1b905c8ab9cd1731659de16216ab2caa9bf227
MD5 4d89290073e9090c01b4c832b1bff01b
BLAKE2b-256 e6580aad0e89bc6664fcf041a19b0e9de07af7247c94d146a8ed636876a776f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.3.0-cp315-cp315-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nereids-0.3.0-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nereids-0.3.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9db5aaa4a181429b2f5489687c23fe463f24b4b5ce5fcb2aef21175b98e5502c
MD5 2d4e72d561b9568699053c915addc175
BLAKE2b-256 d6fb29a2f2e5809889b1a10028df768910a8ea9957ccece8755744eba40c3846

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.3.0-cp314-cp314t-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nereids-0.3.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: nereids-0.3.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for nereids-0.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8ad8b86c77406291c086c0bd3a9d163ff84bb8d859220c6e0604fcc1da354f96
MD5 a864a563a597cb1894f00f57accf68e6
BLAKE2b-256 43943595eaeb491b7b2475238017a0253ffd9b509f676a5bd924a880fe1499ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.3.0-cp314-cp314-win_amd64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nereids-0.3.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nereids-0.3.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bd20f8d232560727a891cf639b3b86694b4d09e628e7914068d7acdcc88755d9
MD5 d52b3031dd31924353859412d271b6ee
BLAKE2b-256 76e6323722917d4fdf2b07cdcafa152ed5e385b68061814e2a3cf490c58ef7e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.3.0-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nereids-0.3.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nereids-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0640787161aa0fd6c187a9c037ae032807373206d7d934ed91e6472b20277875
MD5 d233f42963d732fa0391413b9e313a3a
BLAKE2b-256 f766ca22e0c4130f15f573d21c4aa13638ce099d597885ce445a8d5c2afcdcb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.3.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nereids-0.3.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: nereids-0.3.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for nereids-0.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1e164297170909263ec84758e32f48554cce4dca1da7def96e7c0b985174fdba
MD5 b460fdceb536bd635ef3946e2acb924d
BLAKE2b-256 22edd99aa1defafb32bba21de4c3da1c39f4ce11130d46a83e2a95a41d8a13dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.3.0-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nereids-0.3.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nereids-0.3.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 be44b4d2ff8228cb04668763fa18839a5fe8b0e6d722377ee888bdb08a6f67db
MD5 cc7c5603e2c335eb55dceac83daf5e3f
BLAKE2b-256 b1a9d6efbe0f37324aa0725e38400315ab42084ba4c3809759aca4a58976c21e

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.3.0-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nereids-0.3.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nereids-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e9881d8d8d0763e7ea7513abbce69b62f86484377cf3f2af5eb4835997b9f690
MD5 9bb6525d7047769d1747b4ec6af326e3
BLAKE2b-256 c110ac887ecbbedc11df165b69f0ea507ee4a23136d360ef075c63d449a10087

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.3.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nereids-0.3.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: nereids-0.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for nereids-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 44ea8233ae39fc7d432092c44ae589084f8e5d115b502b0aeb303faf12f2ba55
MD5 37ade3a6aecfb063989c5c8d52bce971
BLAKE2b-256 cdbf13f9032f2d31348a0eb4c7c13ef22a8b4c9fae8a284c80eabcd269aaf434

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.3.0-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nereids-0.3.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nereids-0.3.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f4ece460497d2527e884207f0f94a5b657c7f611c5c98dc20eeefa622333f472
MD5 06499217dbe29a6362dd054c9949d707
BLAKE2b-256 f6f7f308ce3bee24a977dd9cbf80faaa13cd1beb6ea82dc9be1edbbc48474763

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.3.0-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nereids-0.3.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nereids-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d92b57c8e45b14e3b005e028ef3a46ad18cb7fc677dd78b5be6af74de701867
MD5 a2b5a2512834ecf0fc15e6c5cc524c93
BLAKE2b-256 0fa9c0ec19be5f89fd43c0c47f333db390ab9648467f5a4cf82f4e9c429abd5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.3.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nereids-0.3.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: nereids-0.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for nereids-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3f482c2c2254d0cf406eb50ae031e061aa1f2832dcf44af7c58ec84cce4e1b9e
MD5 f8d0d23826adcfa59d79d0cee059aa6f
BLAKE2b-256 a3859aecb23bd0e9a6c0f7d9ca90963bb32023ca92ef35022ce0464441bd2a40

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.3.0-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nereids-0.3.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nereids-0.3.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9675a1ab1e637ed76ead5dc1bf313d5fec36b60a0fa619cd1c229ab605481c0a
MD5 e2bab083aeecc94d73bb8eb1fc857fa3
BLAKE2b-256 a240ff523675627fe5cf593d6fbe47a88a6fbec67872760a59d52fb0b1fe8647

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.3.0-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nereids-0.3.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nereids-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7fbc347c7613cc5235b3511e99b3f09498bfb2f895237cb7ef75fb5cb525e9c
MD5 05fcc3f1b56b31263a3f8d27e9679c31
BLAKE2b-256 11676a27ec3a679690b3903744b4f5f169bcfbd505b8ccf64f0436afbd06cb0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.3.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nereids-0.3.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: nereids-0.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for nereids-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 52a65adb518bc0d13ae1d5624668b0bb05c11d95ec21591ad3c6db378ff62f33
MD5 42ca84c1b6130974c1bab307d19dc6b4
BLAKE2b-256 5616d7b24eea9ea2f5a6b558e63cfc2e5de48efe2064b70aab1647ce55fcc149

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.3.0-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nereids-0.3.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nereids-0.3.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2436975883fdf20f51aef38f7675abd37834722827dee283fe0467200d2f6571
MD5 7242af8fe436871f83417d98617bc3ac
BLAKE2b-256 2f8a3df91a97e64057cb442d972ee7ae0ac7e8d4583985eb5792f30ebcc4fc01

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.3.0-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nereids-0.3.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nereids-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b266b29878434590d37925fa32926a739a93b1d06bf0bfb66473390fd9d78c5a
MD5 b7a49e7266cb7a09daef803b7bd57d9e
BLAKE2b-256 1bf577b1795b9de8270e56d37fef757feae7821e5dcafa1db0ee8aa46f2257fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.3.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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