Skip to main content

Neutron Resonance Resolved Imaging Data Analysis System — Python bindings

Reason this release was yanked:

incomplete release pipeline run on Github Side

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.2.0.tar.gz (789.9 kB view details)

Uploaded Source

Built Distributions

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

nereids-0.2.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

nereids-0.2.0-cp315-cp315t-manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

nereids-0.2.0-cp315-cp315-manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

nereids-0.2.0-cp314-cp314t-manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

nereids-0.2.0-cp314-cp314-win_amd64.whl (6.1 MB view details)

Uploaded CPython 3.14Windows x86-64

nereids-0.2.0-cp314-cp314-manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

nereids-0.2.0-cp314-cp314-macosx_11_0_arm64.whl (4.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

nereids-0.2.0-cp313-cp313-win_amd64.whl (6.1 MB view details)

Uploaded CPython 3.13Windows x86-64

nereids-0.2.0-cp313-cp313-manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

nereids-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (4.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

nereids-0.2.0-cp312-cp312-win_amd64.whl (6.1 MB view details)

Uploaded CPython 3.12Windows x86-64

nereids-0.2.0-cp312-cp312-manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

nereids-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (4.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

nereids-0.2.0-cp311-cp311-win_amd64.whl (6.2 MB view details)

Uploaded CPython 3.11Windows x86-64

nereids-0.2.0-cp311-cp311-manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

nereids-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

nereids-0.2.0-cp310-cp310-win_amd64.whl (6.2 MB view details)

Uploaded CPython 3.10Windows x86-64

nereids-0.2.0-cp310-cp310-manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

nereids-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: nereids-0.2.0.tar.gz
  • Upload date:
  • Size: 789.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nereids-0.2.0.tar.gz
Algorithm Hash digest
SHA256 5c4efc51f42e7c9d40585d77b4a106e29c73fc6a118d75305182e0f80c748455
MD5 75eff72c9e340ee78f61568dc23b6a7d
BLAKE2b-256 6e0da94919244639fa319df37b66f59d1d747609e81d6c841462bc340abfa3be

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.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.2.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nereids-0.2.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3192be66c1fc6572849fdaff7da6380030a206c6112e9e08a64745213f356f4d
MD5 34d0c2360f79b729a124ce98a5c2c8e8
BLAKE2b-256 7abbd391e6639946aa31d3f69cbc00d8c4eb15a6c409c8c4da5712358b46adfa

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.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.2.0-cp315-cp315t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nereids-0.2.0-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 26aad9b4592e21850255ffd527505a6b978ae6de7d2cfb095bba2c26e8f3d62e
MD5 68060db14cc2f1cd8d3f12ce9951b5bf
BLAKE2b-256 f9caa0a8a68e56d0b21361883597bdf7b9f9dc1babbaffb627a10180f5a8c820

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.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.2.0-cp315-cp315-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nereids-0.2.0-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a3e4a9228175accd6381cc8d5fdfe1eb1c95481875053f378f94b6906b193193
MD5 aa886948d34d191a6ded2a015fe97048
BLAKE2b-256 42d5609f1d9bd6534b3d9c00db16e95f48fd44a86ecdcc7edd9c2c89b03e8028

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.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.2.0-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nereids-0.2.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 60612e1fae3fca25c91d9dc86e48f92dd3fa8e5ef84bf720fcec5c88d35690e2
MD5 26f2035db72e62c2cdb7223f4f45ff5e
BLAKE2b-256 e84c8f2550e805e4e79839265ea9e834314bfe0993b461371f108cdf337d8c4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.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.2.0-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for nereids-0.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6f66df10ed242322b8556d9ad88c09be14934ab02093b1e5d443662246e8cfc8
MD5 bda3f5b390240391fc615da6b90c64d2
BLAKE2b-256 05c56c7c690a8c9c89b1776ed0c9910040e526d02b57fa68310ec27ebd9a4a15

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.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.2.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nereids-0.2.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4cfe9c38675c4925dbf16ea6d2c53695ec08a51e9b79ffbc16d9a39d7282105c
MD5 1f170e412c18e9c0cc47c96705e91597
BLAKE2b-256 2736d08596499e9ff31095986ef480029e3283045d3926c1b40403c3ada3b3d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.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.2.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nereids-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bdbdefb604719c11b9bb879c6ddabcf626fa0ffde434fa9b1e4e7911f1831323
MD5 39be089293aee6114df73de1f3d82400
BLAKE2b-256 21132aeb96219d4dc72fbf516c93fc9262272b7ad4d2029a330948377e12f0ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.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.2.0-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for nereids-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d64f421f28d214dcbc7e2c1cb0755b75fbeb843458c0a1cb62bd408040b3a3c8
MD5 797609c09a965679b7deb597ae5436c9
BLAKE2b-256 86c8d19508fbceea7a97616114c38742e8174de306efc66237b5782cc81e153d

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.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.2.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nereids-0.2.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7a20a402117606bce91954f6b5e87de032533b6378614184b383c6e9cfa190ed
MD5 719f250a5a0c194e7174d1af488dcf90
BLAKE2b-256 d8d8dcd28a7d3e88104c7acba386f1c6c3ccfaccdaa45580d7b7f5f99787f136

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.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.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nereids-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f1f247f19dbd23a0902151dac1d286f65bd8a9c9fb601da7e6ea51afc7db680
MD5 98761797332bc7144db43900d905521d
BLAKE2b-256 595140bbdfe311e2699714e83cd9f8327f2d0f4c887d20b84cc048d6907654c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.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.2.0-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for nereids-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c9651b5ed6b29be412d9816fd7d2403683f5737f8cc3a561ff5d85f87ccee41e
MD5 0a294c8658fea51392af06a776e6fcec
BLAKE2b-256 d049af34acb8c879613f4aa3757fe0373c6fa63e93eec3e7bc29f2c81144d31a

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.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.2.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nereids-0.2.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b5a90ce04b62f6234692e5304302a8572c8d1963b27706bc031da6b247f17e9b
MD5 a9485fe9a5371744cad195944b6b88a2
BLAKE2b-256 51763c437c6ccf17353dd06ec1f0f89d055493b6eb147a8311bb2b4e48b63b89

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.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.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nereids-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eadd157e1f073ac1b6cc0e95a2e46450583e6ad43463444dcdb02fd69060cf31
MD5 4f25152fdf455dcc8aeb94e63d9eb853
BLAKE2b-256 80e39dd22e435e5b164e74d357b9ccf21246eb94d4d84f2c877c11f65e9531e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.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.2.0-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for nereids-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 513c3cfa9e3a01c213068c802f606c7b11db811d3364f8b53b3da89b9841c8a0
MD5 95751de2aa2fb5683c3fb1c6c6497c25
BLAKE2b-256 f11d65e00701bcfc26ea9c56ebccd16b254e2438b77775de8f29f3f432969ef5

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.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.2.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nereids-0.2.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fe5fb198368295ca6a039e546092962bc0ca95aa20c76b0d4c9d8e08551bee07
MD5 d5f9a75214048eca2fdde48b71fafe2e
BLAKE2b-256 d7297b5de3327625050e4cdbfdeee360312a0290fce6ffc6e78add7a864b1471

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.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.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nereids-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d554c712376cc0b4d1b35330d21a0c3a4d6f344c3a7e3e3a6d14bbe0ee1bfb8
MD5 03eec06f3320f2c1e7a79c8d2042b9fd
BLAKE2b-256 fdacc3956c77fad50d8c6fb164c38e115c7bc5392844ba9153f8dad31cef4152

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.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.2.0-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for nereids-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ac38509abd45ed60d83886506c6d327341931ca405a3d9bc2800fb5226bc8135
MD5 e70cc90369aa9cfafbdafef5d68d59e7
BLAKE2b-256 47f13df8f123c96d6dca552f8e6dda75a779e00439a44611f6c86ff6861ccc41

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.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.2.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nereids-0.2.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4a2c596fb04cb88c1d3c4a213e9f1e6cb574869780d2b87a9558f7df1761e342
MD5 de5fbcfd1faf07c2493fd467969e3e41
BLAKE2b-256 c3644ec9eea604e4a1426d4a733ac0a8368ece6abaa950669796529321d27827

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.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.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nereids-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d880d522f4566f1bf2e043e61e9e1a29c1efa4cf92194c966cc58dd9ec3b532
MD5 f6a7e23a858952953ca10fa323523e46
BLAKE2b-256 58b0a160aebe974f4099dde9aa94f6bf94156d4af278a95cef979a7bea0aa0bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.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