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.4.tar.gz (305.5 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.4-cp314-cp314t-win_arm64.whl (1.1 MB view details)

Uploaded CPython 3.14tWindows ARM64

sanafe-2.2.4-cp314-cp314t-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.14tWindows x86-64

sanafe-2.2.4-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.4-cp314-cp314t-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

sanafe-2.2.4-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.4-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.4-cp314-cp314t-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

sanafe-2.2.4-cp314-cp314-win_arm64.whl (1.1 MB view details)

Uploaded CPython 3.14Windows ARM64

sanafe-2.2.4-cp314-cp314-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.14Windows x86-64

sanafe-2.2.4-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.4-cp314-cp314-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

sanafe-2.2.4-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.4-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.4-cp314-cp314-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

sanafe-2.2.4-cp313-cp313-win_arm64.whl (1.1 MB view details)

Uploaded CPython 3.13Windows ARM64

sanafe-2.2.4-cp313-cp313-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.13Windows x86-64

sanafe-2.2.4-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.4-cp313-cp313-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

sanafe-2.2.4-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.4-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.4-cp313-cp313-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sanafe-2.2.4-cp312-cp312-win_arm64.whl (1.1 MB view details)

Uploaded CPython 3.12Windows ARM64

sanafe-2.2.4-cp312-cp312-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.12Windows x86-64

sanafe-2.2.4-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.4-cp312-cp312-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

sanafe-2.2.4-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.4-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.4-cp312-cp312-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sanafe-2.2.4-cp311-cp311-win_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11Windows ARM64

sanafe-2.2.4-cp311-cp311-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86-64

sanafe-2.2.4-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.4-cp311-cp311-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

sanafe-2.2.4-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.4-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.4-cp311-cp311-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sanafe-2.2.4-cp310-cp310-win_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10Windows ARM64

sanafe-2.2.4-cp310-cp310-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86-64

sanafe-2.2.4-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.4-cp310-cp310-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

sanafe-2.2.4-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.4-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.4-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.4.tar.gz.

File metadata

  • Download URL: sanafe-2.2.4.tar.gz
  • Upload date:
  • Size: 305.5 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.4.tar.gz
Algorithm Hash digest
SHA256 ed5bfb62183e2a68da63522078431a63652471f726590edb6efe27c342b27949
MD5 97d3bf2ac9aa531583fb4babdd6afb4a
BLAKE2b-256 d80da3d75dd16a6255639edd895704bca6cff5c71f7e570102531dd2304f214b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4.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.4-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: sanafe-2.2.4-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 1.1 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.4-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 e6e5bb6b611e4aff006a83e6e2e020e9d8a1a7875e63d77f8f02e4f951820d68
MD5 1a9ac24c613bd07a4316717d7b103398
BLAKE2b-256 2b50bd1411ad53f0d9ad91516c625df01d1fdc3520dd9615184ef16c547a5aa1

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: sanafe-2.2.4-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 1.2 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.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 44ec4e7218c8832b15818138cd6e2ae603db8bb984b115ce774e14ab86bc5089
MD5 80bc016f359972281b4ba657f3a3fcc5
BLAKE2b-256 ca1d31167297e453ddb79e3b80e1d4774c9c9cbe97e802debc67f87a85226351

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3adc543d12a625c17078fa57983145d7061db74799615f8be39557377c49c35c
MD5 48be31c191519867fcdbdc2b44ba79bf
BLAKE2b-256 58c6a6dfed43c53363fa0ca91414c3369d5fa5bce57d97c5b61efe6fc2a32531

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b7bfc6906f166490eaf7bdf51cb4b1bb2b49abbdcc28c63b4a1666e4f68c7d3c
MD5 e7cc26ed5f2665aa0d348903679b13ba
BLAKE2b-256 3a0742365e1205d17a219bb2fec521da7904716573bf35905d1766312dfceae5

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.4-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1716744345101c6e1238c23d6ae65eee9b7c6c79e857fd9a6551485b9f7b3aaf
MD5 f2befaa55acc9954533d42b0c749aae2
BLAKE2b-256 053da74c7eea8bcebc84b2031842bb358bbaab6a1e453265051319ddca2bdf2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.4-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a26b1ad3cb2de9b18d092b888ed1c8a180929dc0d32ea23e3c792fe7709a7e72
MD5 d6811c00c79202987ecc1dc75344d85f
BLAKE2b-256 09ff42ce135a754ac703320858270b38b40116665ae26c22dd3257525fa547fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca02d0c6bcc010d9ce422e83514edfc7afac0b3c85e5d847da727dbd859b3ab0
MD5 cab72757f9b0ccb1794e820e03afeb74
BLAKE2b-256 ba22886c9b5df86d2be4693f5c2355a29d9b38dff348d31f08174cd3dbe37440

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: sanafe-2.2.4-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 1.1 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.4-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 e7fb07dbb7cef5fbdf50456a80bfe3875ac8a761d0ab1270985c1084f975cd2e
MD5 ecc1c6b656c87660f01a2f66826997e4
BLAKE2b-256 0f5e0c280572e4ea0c08166f3c2df3706f428aa83fdfa33a78c361786be15903

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: sanafe-2.2.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.2 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.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7c73c3c749276868cccfcbd2f4f33382d7996b9070c9f7b2b41361482e1ab68f
MD5 d9e1362455ec140a3a60f0b85d33e673
BLAKE2b-256 de1f3ec34129679a03dd932ae492f6030918fe6f5b159fe16356372d7547a448

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb0259d89a8a6948c1d197e2d335b19ff130e995889f3f0d17e914db4aab8bf8
MD5 f0d15304cededb11d9534e150d092447
BLAKE2b-256 f9a60c6a33f07c94e1c603471579a99fe2f19706b4f57f61e2ef87ae1a540fe8

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 555200c294932f2875fb425287efb67790f93bf02b2f6e35cb0fee57784c104f
MD5 59bfdba9e6f8e1a9628b6f942861eae6
BLAKE2b-256 c54d651553e840d326d5d7a0436bd48fe2ac4eacfbc82b24db8b98a2551fa491

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.4-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a0ffb048477f7fc62ca17a54ce5421788243631d76771ff896751890b4666000
MD5 7374e61705d4e503952b765d465d58b1
BLAKE2b-256 1ed3d8121a460dddf13b542e6e8c130f40e0229fe8ff030b5ca371aecfb31bb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.4-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6285ea8d7e2c321edc82c5b109388d2f967a29e05e15bee8804d6bd950de49ae
MD5 91c5897f6264d4755ff17cda069c2d85
BLAKE2b-256 c55c4610c32292838f8720136c4e9bf0ed87b086b6567be4bd3d0bd3a33cbd22

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ac4f9bc6a15e7cf860cd1474fccd9eecb5e93c2493149805669c0d25cf07034
MD5 6013483d05358430af2f114c5ff4b390
BLAKE2b-256 c8be254356675703d6cb7de4948228dfde64688e4f539cccb61bdcbb49164874

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: sanafe-2.2.4-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 1.1 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.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 322755270ca13cc82af2ba0bcff950907bf25b4a71e8e1ef5503baa313678ffe
MD5 ce938d3fdd06032630df9dd0cb12cc93
BLAKE2b-256 a9bef14b1a261daecba1945c948d3e20673d5918d58caf2dc3463ffa8d7fa5e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: sanafe-2.2.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.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 sanafe-2.2.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1bb17e7f3f3d852e223c8199a6cda0d366f9978bab66c867dd6649ee62361167
MD5 35d397c8aa15b0fe4c8f6b1c2b24097e
BLAKE2b-256 b6b2098253883675845d2df7cbe5ea4ab9b2e4e1f359f0d75be2333845079c09

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b28bd64d5358e0599e3750d1aa2ee193dd47744cc738f55be6b9ea6c09da045f
MD5 bec628307ffa024905ad953083e5b0dd
BLAKE2b-256 707195a49c2fd5329402e0afee6912b009900f42995355e2118950df3178e821

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f7876d23781da8c90f00f9600cf592efbbaf1cabad0e08931291dc40ca49c9c8
MD5 4257f97acd7f86699a0b3381e3abfbd5
BLAKE2b-256 4aa9588b5a2028559af7f8662c316a5fd1ab2d813815681b010eb19ccbd89032

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a6d6d792e594a5fdf2129cd8b0396b4d49ac04b93e1a707648979cb50e408edc
MD5 c64b4abcc409e6645c3516a496186232
BLAKE2b-256 76574ef39aef82d32c04955f4c4077761e4ec4fc6700e79d1b847ce2a537b739

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.4-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 680434fa629ed60f6fcb89bcb16c76c68c29a7ffe2a42b04c22b0370d8d6c90a
MD5 f0342761a60d8fb61bcb9dbb8da1beba
BLAKE2b-256 abe307174e1869e6b96e3215f2256750d536c34e41bc0af12c9c5869d581b7d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e28aaee0260b8b839d2f464ceca8d962b1c471434ea711746d9553a13c2336a2
MD5 d5e83bb39a395f5e812b64c5206830ac
BLAKE2b-256 e18d4112f168ee2bae87d25e62e0f4429e90a47c473f647732bc4b1a1a5e014e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: sanafe-2.2.4-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 1.1 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.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 cfbd37654e077f9a976bb77701b53ebf8f64dd6141c26c472c175b51e4ee04b2
MD5 eb4754a1e746775b19cded25c51de530
BLAKE2b-256 774e4076c5c3cb6cd03e51aaa708d851d759171d177152032b246caf461d5d51

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: sanafe-2.2.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.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 sanafe-2.2.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ad2a232b095d3f7d54297e4c36b117776067e56dea1604b82c5d568748d72c1d
MD5 9b0db4c87221ff7aef75fc3eb4fcf1ca
BLAKE2b-256 5a47636e58575f0cb9de40f17ff38df8184b17ca9a74720b73fa09fd8d479c74

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9322ef91ef812d54f2ae642a13fad1163ad4036c1801f39f11b5b58938deedbb
MD5 d36b344242b27f2a2eccc06833031090
BLAKE2b-256 a0f6e57b8ecc6cb16d5819236f970b6da62b781721ce202e26ea0dfb72db916d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a43c684777148bff51e97a4004fc4132cfc9a5585805b656e56e807434039dc
MD5 2fe5bac55e32f1f85333bd5e1504ee00
BLAKE2b-256 028df399266f563b531dc9a51156c1e1262dc1669b70e18a1ee9765e6cab7c49

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9df7a74a2ea91f8982dc8cbba8c54636b1c57bd219ea017a6e71a54547e4c2b6
MD5 648f2d69ab6d87166cbbaecc4f0f455b
BLAKE2b-256 4e660a5c4e9ad953de5250f897aca2ded4be8886239d71c7f6203ae71a9b8dab

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.4-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 636947386e3d57ea3835a14bfaca0653830e5e0a9b0e9776e5f4b7799fb9d100
MD5 f74c8cf24cfa8f5b2aef8612fe68ca23
BLAKE2b-256 526d71b209ff6f29741ce34505b8da9ef19ca13bd6ad618664918686ca3b2dbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 317f205bb2c697e2359f314489eb799b1680c00ba42183f1e738fe8bb08fa8e4
MD5 64227e1ba539fe005ac876d02bea35f2
BLAKE2b-256 609fd4892e9a89b9998ad59c5fa640dd502cb7bd592d429fbff02f88484df74f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: sanafe-2.2.4-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 1.1 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.4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 ef8d5a00ddb51bdf496f07346dfa347aa1e9cd28ad4102af3853128e5a46f156
MD5 cf54727d265c244b018d40440bac1617
BLAKE2b-256 1929b7b9c62b677e3a80c0b3868305e36a7374e35ce04ba70eef190f1e03fc5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: sanafe-2.2.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.1 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.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d5683064cd14c3471cfdaf7342ffc2941bd4490147fb489902fcf7f614903b41
MD5 d172912b2a22a76723045a9629e7be58
BLAKE2b-256 79be5df5521913de00088ee864233fb7b963e75f7c0bb4cd619f59077711f581

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 281578bec2625ebd99ed71d73707f1602f05b5b630ba7896009213949fe82986
MD5 479743243c93272b180a79def5f2d932
BLAKE2b-256 00884bf73da9adcbc4fdd8512dac6b1ff516310cdcf6869b6e614f70eedb7c66

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 05bbda42a26d0a0a659d2045e4b1b5517a289ec336e3fad7397c6e7ecf921f3c
MD5 1555eaa2da24a55f880c16ac7e63b7a7
BLAKE2b-256 a4e8636035b547eca8a84760cd5f5d28f6e6e94e6f27da497aa901504d2f7660

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6a901d37e0458cea619420442c3c3838168155c72784b812a328740535ddc49f
MD5 f2b058fadaff73c15a5ebfc8985958b5
BLAKE2b-256 79e5e59fcd628491e420b10ab1ab6e8a5f0e608903f59dafacf9de68937624b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.4-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fb58de58a9bdc3f97473fd51276458b646b88ea10cc2d7fee760e437f2f38f60
MD5 394eb5c48aa7963961d00120170fb4f4
BLAKE2b-256 5bd94ccef1d20abf26f454c2543fde6ccb2f897ddaee1d38e4fd892fa465c6f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c1e9f7d7ed80ba6064d5681c9360a414c01b142a7e61c1867b34fc6094787a3
MD5 4512a632bea0a727d2fe4e43eab4527c
BLAKE2b-256 8aaf4e3bffd244b6463ac0feeb1c5df45b85d9153db81db335aaab533dc5600e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: sanafe-2.2.4-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 1.1 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.4-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 78e172c2f6e89659455e7291e8a34b2c750fc8874b7b142b4a0ab8261c7aca2c
MD5 b8a554003382c39afda653f9e83e3a6f
BLAKE2b-256 955c04a8e6a4c6f6aeb53339a0caeb1ef7157e33148631fe341c71f6a52fbe00

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: sanafe-2.2.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.1 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.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 03bd924787d8be3bb7d51963cf506fef573d9e88058a52fc3b999a07f9211f43
MD5 4785bb75e635e60f2d4e37d71bb62b60
BLAKE2b-256 5129181421c74420c4af723f23f16c62401256b981c7fe9d0d564cf6e9885e3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 299b5b55a0627333df7287a1622e0db06b97cbb009e8797fc0c6b106d589a84f
MD5 a8b71f1b87a6ee990ab56bfd255acc5a
BLAKE2b-256 2ccf15ecffb97a6810ec3d58e92fe7156f58f7d2ea2e14bc4aa50580c8a53794

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e893fcbd0a5e8d905c60ce8f74bb0ed106c35f3f3ec6e8be0825e424a7202631
MD5 9ae48485d7ef7b2deaf2bd9800d61f49
BLAKE2b-256 b8bde6ed58dab177e93f452a4093ed75904c71ef0da76ec35580a272a4269131

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 834d061e37a3fe7dcb17ab8bb7597bc683f1ef2d02aae08a44c024e1240fbb62
MD5 98e6ca881c808a5bc0a136f51fb60c47
BLAKE2b-256 e36f10cf0590248f7786ac109550633f885db89d9ec7c6a485e6edc7bb4dfc82

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.4-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b0f3614ea65332e3710c6559b9a6c662eb099fbd5d3ee79600e56ad32277edfa
MD5 4597459752ebd9f3d7200c18eaedac0d
BLAKE2b-256 8396140b520519e1a8c627ec8772930930846e9e045bd26269e44ec1c492b1d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sanafe-2.2.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8102bd40083d292ea48c231b28f40a90382c19ccd6ffc7a7abc683c150e6a412
MD5 82151d1f3a9e297cde2a92d9b099bbc0
BLAKE2b-256 c16e46d40728f9df6b68dfa2ef44414eda94a31246142e301744904297a068e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanafe-2.2.4-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