Skip to main content

SANA-FE: Simulating Advanced Neuromorphic Architectures for Fast Exploration

Project description

SANA-FE

PyPI version Documentation Status License: GPL v3 DOI

Simulating Advanced Neuromorphic Architectures for Fast Exploration (SANA-FE) is a framework for modeling the energy usage and performance of different neuromorphic hardware. Given a description of a neuromorphic chip and a mapped spiking neural network (SNN), SANA-FE simulates execution at time-step granularity and reports energy, latency, and detailed per-unit performance statistics.

Quickstart

SANA-FE has two interfaces: A Python API (recommended for most users) and a standalone command-line simulator.

Python

import sanafe

arch, net = sanafe.load_example()
chip = sanafe.SpikingChip(arch)
chip.load(net)
results = chip.sim(100)
print(results)

Standalone Simulator

./sim arch/example_chip.yaml snn/example_snn.yaml 100

This simulates 100 time-steps of a small connected spiking neural network (SNN). For an example simulation of a real-world architecture (Intel's Loihi) running DVS gesture classification with spike traces, run:

./sim -s arch/loihi.yaml snn/dvs.yaml 1000

General usage:

./sim [optional flags] <architecture description> <SNN description> <N timesteps>

Command-line Flags

  • -m: Enable message traces to messages.csv
  • -n: Use the (legacy) netlist format for SNNs, instead of YAML.
  • -o: Output directory
  • -p: Record the simulated performance of each timestep to perf.csv
  • -s: Enable spike traces to spikes.csv
  • -t [simple/detailed/cycle]: Specify the timing model (default=detailed)
  • -v: Enable potential (voltage) traces to potential.csv
  • -x: Enable extra user neuron traces to neurons.csv
  • -N: Number of neuron/message processing threads (default=1)
  • -S: Number of scheduling threads (default=0, use main thread)

Installation

The latest Python release is available on PyPI and can be installed with: pip install sanafe

Custom Builds

The project can also be manually installed from source. This project uses CMake as its build system and dependency manager. To setup compilation, first create a temporary build directory:

mkdir build && cd build

Run the following command in this build directory:

cmake ..

Then compile SANA-FE and copy it to the project directory by running the command:

make -j ${NPROC} && make install && cd ..

The option -j indicates the number of parallel build threads.

Dependencies

Building this project requires cmake, make, and a compiler that supports the C++17 standard (e.g., GCC >= 8, Clang >= 5). This project uses RapidYAML for all YAML file parsing, and Booksim 2 for optional cycle-accurate NoC modeling. To build the Python interfaces, you must also have Python >= 3.10 installed with PyBind11. You can install PyBind11 using:

pip install pybind11

Simulator Overview

SANA-FE uses a user-provided spiking architecture, a mapped SNN, and run-time configuration to simulate a spiking chip as it executes a spiking application. SANA-FE uses the Architecture to compile a SpikingChip, which it then loads the mapped SNN. SANA-FE then rapidly simulates the design at a time-step granularity.

During each time-step SANA-FE models custom spike-processing pipelines executing within each core, modeling the processing of neurons and spike messages. Using our spiking hardware template, we enable custom hardware blocks to be incorporated for axonal, synaptic, dendritic and somatic hardware. Each hardware unit is implemented using a model - you can take the built-in hardware unit models provided in models.cpp, or implement models externally as hardware unit plugins using the fixed base class interfaces. The SANA-FE kernel coordinates all on-chip activity, makes calls to the models and tracks the total energy and latency across the chip.

SANA-FE includes efficient but detailed semi-analytical timing models. This takes aggregated information about all spike messages generated in a time-step and calls a custom scheduler in schedule.cpp. The on chip schedule ultimately gives you a reasonably accurate prediction of the chip timings, accounting for effects such as blocking in the NoC and custom latency simulations within hardware units.

Simulator Outputs

If corresponding traces are enabled, output is saved to trace files with hard-coded names using either csv or yaml extensions.

spikes.csv: The spikes for each time-step on probed neurons

potential.csv: The potentials for each time-step on probed neurons

neurons.csv: Any extra neuron state traces for each time-step (if supported).

perf.csv: Detailed statistics for each timestep and each hardware unit

messages.csv: Information on spike messages for each time-step

run_summary.yaml: High-level statistics for the simulation e.g. runtime

This project has been written in C++ and Python. C++ code has been written using the C++17 standard.

For more details, see:

Citation

We hope that you find this project useful. If you use SANA-FE in your work, please cite our paper:

James A. Boyle, Mark Plagge, Suma George Cardwell, Frances S. Chance, and Andreas Gerstlauer, "SANA-FE: Simulating Advanced Neuromorphic Architectures for Fast Exploration," in IEEE Transactions on Computer-Aided Design of Integrated Circuits and Systems (TCAD), vol. 44, no. 8, pp. 3165–3178, 2025, doi:10.1109/TCAD.2025.3537971.

@article{boyle2025sanafe,
  title={SANA-FE: Simulating Advanced Neuromorphic Architectures for Fast Exploration},
  author={James A. Boyle and Mark Plagge and Suma George Cardwell and Frances S. Chance and Andreas Gerstlauer},
  journal={IEEE Transactions on Computer-Aided Design of Integrated Circuits and Systems (TCAD)},
  volume={44},
  number={8},
  pages={3165--3178},
  year={2025},
  doi={10.1109/TCAD.2025.3537971}
}

Projects using SANA-FE

We are currently inviting any SANA-FE users to send their projects! We would like to include references here.

References

James A. Boyle, Jason Ho, Mark Plagge, Suma George Cardwell, Frances S. Chance, and Andreas Gerstlauer, "Exploring Dendrites in Large-Scale Neuromorphic Architectures," in International Conference on Neuromorphic Systems (ICONS), Seattle, WA, USA, 2025, doi:10.1109/ICONS69015.2025.00018.

James A. Boyle, Mark Plagge, Suma George Cardwell, Frances S. Chance, and Andreas Gerstlauer, "SANA-FE: Simulating Advanced Neuromorphic Architectures for Fast Exploration," in IEEE Transactions on Computer-Aided Design of Integrated Circuits and Systems (TCAD), vol. 44, no. 8, pp. 3165–3178, 2025, doi:10.1109/TCAD.2025.3537971.

James A. Boyle, Mark Plagge, Suma George Cardwell, Frances S. Chance, and Andreas Gerstlauer, "Tutorial: Large-Scale Spiking Neuromorphic Architecture Exploration using SANA-FE," in International Conference on Hardware/Software Codesign and System Synthesis (CODES+ISSS), Raleigh, NC, USA, 2024, doi:10.1109/CODES-ISSS60120.2024.00007.

James A. Boyle, Mark Plagge, Suma George Cardwell, Frances S. Chance, and Andreas Gerstlauer, "Performance and Energy Simulation of Spiking Neuromorphic Architectures for Fast Exploration," in International Conference on Neuromorphic Systems (ICONS), Santa Fe, NM, USA, 2023, doi:10.1145/3589737.3605970.

License and Acknowledgements

Copyright (c) 2026 - The University of Texas at Austin (GPL 3)

This work was produced under contract #2317831 to National Technology and Engineering Solutions of Sandia, LLC which is under contract No. DE-NA0003525 with the U.S. Department of Energy.

Contact

James Boyle: james.boyle@utexas.edu

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

sanafe-2.2.5.tar.gz (305.7 kB view details)

Uploaded Source

Built Distributions

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

sanafe-2.2.5-cp314-cp314t-win_arm64.whl (1.5 MB view details)

Uploaded CPython 3.14tWindows ARM64

sanafe-2.2.5-cp314-cp314t-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.14tWindows x86-64

sanafe-2.2.5-cp314-cp314t-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

sanafe-2.2.5-cp314-cp314t-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

sanafe-2.2.5-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

sanafe-2.2.5-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

sanafe-2.2.5-cp314-cp314t-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

sanafe-2.2.5-cp314-cp314-win_arm64.whl (1.5 MB view details)

Uploaded CPython 3.14Windows ARM64

sanafe-2.2.5-cp314-cp314-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.14Windows x86-64

sanafe-2.2.5-cp314-cp314-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

sanafe-2.2.5-cp314-cp314-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

sanafe-2.2.5-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

sanafe-2.2.5-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

sanafe-2.2.5-cp314-cp314-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

sanafe-2.2.5-cp313-cp313-win_arm64.whl (1.4 MB view details)

Uploaded CPython 3.13Windows ARM64

sanafe-2.2.5-cp313-cp313-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.13Windows x86-64

sanafe-2.2.5-cp313-cp313-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

sanafe-2.2.5-cp313-cp313-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

sanafe-2.2.5-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

sanafe-2.2.5-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

sanafe-2.2.5-cp313-cp313-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sanafe-2.2.5-cp312-cp312-win_arm64.whl (1.4 MB view details)

Uploaded CPython 3.12Windows ARM64

sanafe-2.2.5-cp312-cp312-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.12Windows x86-64

sanafe-2.2.5-cp312-cp312-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

sanafe-2.2.5-cp312-cp312-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

sanafe-2.2.5-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

sanafe-2.2.5-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

sanafe-2.2.5-cp312-cp312-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sanafe-2.2.5-cp311-cp311-win_arm64.whl (1.4 MB view details)

Uploaded CPython 3.11Windows ARM64

sanafe-2.2.5-cp311-cp311-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86-64

sanafe-2.2.5-cp311-cp311-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

sanafe-2.2.5-cp311-cp311-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

sanafe-2.2.5-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

sanafe-2.2.5-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

sanafe-2.2.5-cp311-cp311-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sanafe-2.2.5-cp310-cp310-win_arm64.whl (1.4 MB view details)

Uploaded CPython 3.10Windows ARM64

sanafe-2.2.5-cp310-cp310-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86-64

sanafe-2.2.5-cp310-cp310-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

sanafe-2.2.5-cp310-cp310-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

sanafe-2.2.5-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

sanafe-2.2.5-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

sanafe-2.2.5-cp310-cp310-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file sanafe-2.2.5.tar.gz.

File metadata

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

File hashes

Hashes for sanafe-2.2.5.tar.gz
Algorithm Hash digest
SHA256 87246bb523a36e4dad6d10ae3f8943b44ec7ff8ea10a30397636cc7fc82e188b
MD5 ddbb92c894ac8529697acccbb18ae339
BLAKE2b-256 8b11af20c21559db820813de1b885d3e5d008bd3214ea51c57a2b818ba7bd7a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5.tar.gz:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: sanafe-2.2.5-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sanafe-2.2.5-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 00f325ef052bc5f5a741345bee2827defa41b75fdea347ea2b9868864665c4ae
MD5 aa7a97b94b10a3c777f8fa7cc84c72db
BLAKE2b-256 2c4404d61dbc409bff44a0f0705488607d26bca5b3c43d40a8975f7f3556a75f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp314-cp314t-win_arm64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: sanafe-2.2.5-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sanafe-2.2.5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a9d1e12beb7dc601d17b8089fc015fda847cd97c1ff61b16b87eab3205e63b59
MD5 88d7e52e10836081c3788779c286d9d1
BLAKE2b-256 e749144d991eb70854057720158a078585db8733c4f5d430844d160b14547a8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp314-cp314t-win_amd64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 89036f0f92b674a33b99b45ce46b9728058687ca90d425680b58ff23f626d17e
MD5 7304fff41e6e6bb5599d844c605efa59
BLAKE2b-256 ce579c8b5f4358c88293662b4e86e8b430196094d395ab8e460134f9708b6ed5

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 298003704e13c4456e927db9e7b3053620c09aeb0c0344a94085e03f8e0ce573
MD5 06e9842d1270b7e95061cb82729fb378
BLAKE2b-256 615d0a5d605d18e1a68b88a106505a896b4f945f3ce8f23b6d910a2cfd90872a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.5-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 73a628db0fd0620b8d629e9436c5dae5eeff403b7ed51550c58c5534b7f542dc
MD5 1a7eae5280ebf417b5e1ef25b16400b2
BLAKE2b-256 73e20fda1c332b2db13cc700dc76f98103a7e94c3255eb49d30509aa5c5eab35

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.5-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9334d91e53133b06f77dfb216e32d08f599addd7e9b7a4fc8a0815235ea3e2b8
MD5 8d4f20fd495386b3c6206668767de118
BLAKE2b-256 a4b4aec3da28fb99ec5f82dc843ffbd53771017b28f4301e77b2a8b5fb3c6611

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.5-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5ae109989216ac40f12cf6888c58dde3b56b93d41e0c52106ff0458c12b5332
MD5 d3b1acdffd663c0f0f825c3ad75d9bbc
BLAKE2b-256 bb0bed502acb3307f3725492d94b998f636a0767abd507e7f66e80737dc17247

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: sanafe-2.2.5-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sanafe-2.2.5-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 895249ef170e3e3f37bdefd0b50a4323f80b51cb1245aa9451247263b0c9ea41
MD5 2d4bccedc2187de8e2d5ef731cdb96c3
BLAKE2b-256 3fe1943a9cad49d3c845666f0990700891cbc1a3f1dc148a9d658338bf84bbdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp314-cp314-win_arm64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: sanafe-2.2.5-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.5 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 sanafe-2.2.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 70b17c7db54308891f40fe7d34208f3f4d5d67ec2d1a754cef487bd1db00acc6
MD5 7e06b6631f4c95e6e283f22f940cc408
BLAKE2b-256 4295dd1e07e48c2254f5d679108275402a3fe3713df20ead9452bcdfd8ce1a16

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp314-cp314-win_amd64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4dbabb0e035b1c6bf9c679e79fe37bee6f9086b610d3aae665159ac4218e23a9
MD5 172ba18020634baccfe17586fb1ca835
BLAKE2b-256 1292513fb71c1ea57506c6b6db827492e3d7cd5c9b63004b3c46d9bfb4aec613

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d800bb8f1b1aa232c59bcf0a64abb6765c45fa118ebba6f8e9e3b2d9fa1de804
MD5 55d86d6b16323db2f02adcd76bf96914
BLAKE2b-256 41aefbc4b7a33bce995cb89f4b32087f01c78e67e6550d1f86aa10620f3de603

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.5-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c09d2ff50d66f360dd1b304a059884c400c9b7b139125e9ece8669a222f3cc8d
MD5 84f7c6eeed0cf2bbb06114fee5f127de
BLAKE2b-256 5ce0e0111c2ed2c59d907e7b50d94a49b10718a6d5fdaffeb594a08ad1fee575

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.5-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2c5e39f1db0ce528c1112e69c88636f04023e1e9d5477c988337069923bfeb95
MD5 c836eacdcf989ab5203c2e50fda514ab
BLAKE2b-256 d118f61f6964a8282695330ee9b2da9a0def3ca4b385ddd76c1479bb095f4103

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 864c14caf6dbd2a3dab92f5961f878b5b4ca7f88ed92497c0c00396820f69e33
MD5 e408944885d109e0d1fd1f2fda29d88d
BLAKE2b-256 aaaed06c37f2e4715dfd370a59be61f1a72dd89c583f0f05dc2f0964aaf94e8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: sanafe-2.2.5-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sanafe-2.2.5-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 32c9d507b951e331bf44ba9adc7f4bc8c901337a80a783071a75b7544ed29d24
MD5 fa187bd77a1147c209ca815725eeb760
BLAKE2b-256 0d28246f1e2fd54f45666f8682cebcad26197aaae02ca0a94c18815d874cc27c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp313-cp313-win_arm64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: sanafe-2.2.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.5 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 sanafe-2.2.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 61e5bdded51405d898dea13200f42bab2f47a42af417affbb5dc2c0c6e72ff7f
MD5 ddfed50a91f068fa93397a65d367c531
BLAKE2b-256 8a44b9ea06c4ee82a553e40e85f85156111c3664e774223c7d0293cd15a0d87b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b5f52a6f731081f9f9e86e2897174faf618626ee3ea3cb70eb18c9613b98c6b7
MD5 816265b269130c18b57a3128ab0ac187
BLAKE2b-256 f7d1a6ccf048c1c81bf04ed5efe159d2d5b36d157aae52ae6221e6cbdc49c947

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3c131aa6ddcd99e11de59769e9c371bb17f14432be784235ac274549f24d3af6
MD5 454cbfb5589f2c0540a0d5a33c046e0c
BLAKE2b-256 ae8238703e27d37ac65a79f9f9fa4584d5a1a9fa4bbc2813a7799111a2240b99

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.5-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e2c5910026b55b7b35c9a04b5e3582f9a3d2ea278ff4418559c3c8f9034bf1c5
MD5 d90bc6a6f09159746505195b342661c5
BLAKE2b-256 db25d2316348fffdb3674cce5fcd51e944b2cd5d60883b0e7058389145a8ab24

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.5-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 02a743a7ad178bce894c7a09e31e02f7ab9938fbc7731f1381b7649658bd2591
MD5 f2d8d22bbed5aca6ea5866927a5ec8ce
BLAKE2b-256 30791f8f88a3ad07485afa34da45eb9ff5937145219bba495a8ddc904131b627

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e46b2d621887e6dd3b940823c99a877455d88b84b5a0ac345d332b311bdf46f5
MD5 8645bf7705b76f4f69ed34e69b8a559a
BLAKE2b-256 af3cf1848544d6807661476f36537e72c2937207b61cf944baaaa5d749dff5c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: sanafe-2.2.5-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sanafe-2.2.5-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 9072f4656752d6f3bbe49be6e8f9c4d58db7aafbf74a1643ce623fdb3c6b40e3
MD5 a6e55e29581e008882ebef1042bad186
BLAKE2b-256 b11d17ae8e8c9c5695753eb527b7afde60839f507fcb58a2252710ea5668ba8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp312-cp312-win_arm64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: sanafe-2.2.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.5 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 sanafe-2.2.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c46caec7a385686ba1e7830a247e645078f8a826e2920a9df9d843cd362ba3ae
MD5 b47f26ec2218faf5cdd3fad698d386dd
BLAKE2b-256 9e7c3830cca9781ddb089dab9b729aa70b9cb74d2bcf71ba08935d9f6d2a2597

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4ae0d89d7cd684f04161a5400391d6186349549161dad2627a2ada5ef5a9ca7c
MD5 5637c191a6b526b239d6637c4f55a7b7
BLAKE2b-256 1095a5eb8613158077488402ae300018e6cf5a3f97ae7610cb40f10f4543e7ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2fabe7b7fa7314ea99a708a0aed72a8f730364c0532b51b5a9d92d0e861ebc57
MD5 adc0b07b0710e55e98d0e88c2f019928
BLAKE2b-256 c02bf3aa81adaa6cd57a48694f054fe0cc175341cb7dc41df425afc8608d5b78

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.5-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 23cc444d5c8d477afb9dcd7f6ed63dbe1c09aff6a1b27c5360b8fb839b7b2792
MD5 88aafb8cf592c61a52ad72694cfc4590
BLAKE2b-256 54015d3f5630ccecae005eb9513a2e93ae24d4f18e3cb6b5978e7a6fdf0d4315

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.5-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0c210e7f41bd2052d9612b6a22d140892f001c160625bb5555f1d1b046ac953b
MD5 2a9e0a6ef6aaa3e13d7bdbe38cdc4715
BLAKE2b-256 da019f9ae5274e9d4da298f889ab69c80efe235e2e4214ee42ed6b011e413e1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 abb43d53dc10f977dd854fc83a35d9e1f977f926dca90590cad769601c756f79
MD5 6998867d5b2369f841477f647a53eb08
BLAKE2b-256 a80a4546de9c12d0d037112776d2e2cb2191359fa1b2d4d275dadd9330cdc24f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: sanafe-2.2.5-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sanafe-2.2.5-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 ae3d7eb69a5575c732328c7c0f1a09d82fea935c7bc17499d86f914e61153d88
MD5 8f5be7b7311e46386d349d0666550e12
BLAKE2b-256 1484798bde6400b839d7d09a154182c2f858fb2715deb758e195215a320aa5e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp311-cp311-win_arm64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: sanafe-2.2.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.5 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 sanafe-2.2.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8122fef50c1947f7fdefafaf0a645ffb929b44017649974f074094fdf952b7b2
MD5 5d3c95476e3efc3d6ecdb1091f88a444
BLAKE2b-256 4b15a1d5b854d8426a0d826b401d0bba269f7394c31b63d03cb036b5e4c1ec15

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 98b325fa3a5fa826af35135a5eef8bd96a9f202126dc95752cd42e467c9a9789
MD5 2f9062ea03ea7d832cbcde4ddc850c62
BLAKE2b-256 d8319c7ba14b504a5ef73d92429d3c37c5a2bc10d7d547123180ec5df63ed34f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7ce9d6899bf97d90ed401fadc96e9e9d47749be9b0d118a5e712f8d8b8847527
MD5 7248d9261551592d865d731b5dd3b33b
BLAKE2b-256 ac5d040dcc52d816f91faf7e6660fea2829565a64919931764b315d3dd95140d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.5-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0986c8b1a1c3ce41f70a8619e8e2311150a1a162a9d6c1da09f7fe4d2aff225f
MD5 0375b107082d3d4b62e7b6c80df6b7a2
BLAKE2b-256 08061a4181fe3d2ebf4227ceec03ad14751b7505bd3b401eeefeb20651acde2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.5-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 78bc9acfc8d9a1496b818b03512bff22eaf91d4fe0890d1566347201ce3ac8b9
MD5 dadc5af376c2254525496c8cc9c8fa0c
BLAKE2b-256 a0d62af339be48e7b1df0323ba071ae924a5c9ff3c590d6adedb789d6e95f71e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 498b2370c500396e6dc7d23172146ffb3d9166df6380cf869e04f4394c2571b5
MD5 6a208d40657c7541fc8dfc9747bc84da
BLAKE2b-256 6c03c07ec9e3d4a8a34a4b89a68374ddcbcd6a1e685d96e910776e9811b7c9c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: sanafe-2.2.5-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sanafe-2.2.5-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 baaf1e2f3f7151c17bf956971483e7b52a11d4223ad7caa92c4ef6d9a8c8ac8a
MD5 22991a1583e31aedd427944e3a3f41dc
BLAKE2b-256 a9f5257e93b1f46cf1c87f511f63a0b9d8465216fcc7675283da26b28dc4930c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp310-cp310-win_arm64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: sanafe-2.2.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.5 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 sanafe-2.2.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5a21f3e28a09b9152c1bace1d85ca172a5b6c5f5bd8bc7469ae387efab3dde99
MD5 dc3910316b845b69745ae82cba313dc1
BLAKE2b-256 b523033342e68038472dd6f0b98aef6c478b1de99d7eb58a0c4b2bf08e82ba70

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a7b589de80d99c5ad1aa230af0d73f585c58a3b5134e415ab1c721153435de22
MD5 428644c547db25ffd2a57c9509c52881
BLAKE2b-256 861aaa4c2d1447cfd63d889dda35de6a183cd7fab65fa0637216b137d7759d4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9726582e9981cec86b751932645ae28e8f5d4c968c71ac3815e0bd937249b0ec
MD5 6487db5e9e6609b45b52d5825c8f5355
BLAKE2b-256 72fc6d22d5e24fdf0b034309b61569dab39dff24ad7388f8f6be854b2b57777a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.5-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b132dda21fd9b04ce94f0e18011d9e495831e1caf1e453613b512ef5aa640d89
MD5 20749bbba4b4b90e63c5607b0e9532da
BLAKE2b-256 6532be91eb1e61cf1157706cd353690e88413bb148b7a9da72f039f18358e246

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.5-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 10652aac1af630b3e0c069e5907cbb06689ee7531664e417fddf1eecd1b0cb18
MD5 0e61139f9ee512bd4a012c5ef0459290
BLAKE2b-256 be202100ff7ac78432b6cecb366426769af34279ab0ca0daeb9188c70a3aea68

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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

File details

Details for the file sanafe-2.2.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a11a79ecc478491990f5ac439b8f0866cc5a0fec4b39dfb0e16c6c4eb730cc8
MD5 3372e3b6266e658f2a068aa03b82af5c
BLAKE2b-256 ffacb127ddc56e44c1ccf4ad319bc89857ca6834997ffe84c0e4384399b2eff8

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.5-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yaml on SLAM-Lab/SANA-FE

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