Skip to main content

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

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.9.tar.gz (307.8 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.9-cp314-cp314t-win_arm64.whl (1.5 MB view details)

Uploaded CPython 3.14tWindows ARM64

sanafe-2.2.9-cp314-cp314t-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows ARM64

sanafe-2.2.9-cp314-cp314-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

sanafe-2.2.9-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.9-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.9-cp314-cp314-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

sanafe-2.2.9-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.9-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.9-cp313-cp313-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

sanafe-2.2.9-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.9-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.9-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.9.tar.gz.

File metadata

  • Download URL: sanafe-2.2.9.tar.gz
  • Upload date:
  • Size: 307.8 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.9.tar.gz
Algorithm Hash digest
SHA256 90d36cd6c8de00956ae03dc894d8f8b9cc501c58248de635b666b679f2977b01
MD5 af2ce96decd099cc6fda386f15deb0ef
BLAKE2b-256 620979c25703695a6cbb2c6076894d4a51613b0a4654988725608dee2f352fee

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sanafe-2.2.9-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.9-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 2e96e346fad4daa58b11a010b1c2a387807a2183491ae4d3f069961282ca8e32
MD5 6f402b2d9cca646fdf0279b533a381af
BLAKE2b-256 d2815e6be9425f00dc2fe3447342e2f384c2f6bd0f1c6332f097e06f47fefab6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sanafe-2.2.9-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 1.6 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.9-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 1fb6000964101c6f6750e1a822c091506031ffe68bc40fa455b08646552342a6
MD5 b099e7f437c8de423bf27694b9b94b39
BLAKE2b-256 2739302d2478acf022959f38af8a925dcbd015305b33a678a93dd28be69f2756

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.9-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 873f50131d5a142903995048aa713f58e23c46254fe26fb4153b947abd6f5855
MD5 67bd5983a85c964c01ba833593006114
BLAKE2b-256 95a3811452cd985e7ce03b61f236979c2adf4676ebe45b0ddfb5445fa0ba1bd3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.9-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2fcc911678ef9e5974ea719cda5af54492de3cbf9df8e1a01a7b85f5cb9e9788
MD5 8b1bba290c45604f4397da9877fb463b
BLAKE2b-256 5bc3e06171b30be2a24f60c3a629dfb5afc082919b185b066cbe4e2b34160848

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.9-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7006b8aeaef6ce78712a9a86405ddb002742b852cf5c8764313190122c71c98b
MD5 84a36ad087c5742358d0ec13690fd227
BLAKE2b-256 b93ee6303c184caf77183d3015930eaf9a6e8cde31d7a93f59b5cd262fa820a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.9-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 59a577a6455ba2267e449332153f96904981ecc92111efac0b08a2e8632d23f9
MD5 57e1f07e5741f7e6416eecb84de23ef6
BLAKE2b-256 8b260799fc174cb076a797022e337f972430de40eddb4672d2a968162d0a338c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.9-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 980f63b98c469edcbe3366202979905b7ecf6a81b6cc7bb0e6ab415c271eade6
MD5 9c857dab7ca9770c5bae1166bfa42b42
BLAKE2b-256 e6cf9e7c12472c988bf04d5eda6aceb8f21395f27a2f792386bb29cdf5f75a90

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sanafe-2.2.9-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.9-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 dda75fbf1e156b7fd947e202945cda234d9b71260916e56bb18e806d4af2b638
MD5 69a9fef0a4a2cdaa2c3db7c49aca90cb
BLAKE2b-256 1409b263b739cb7f8f96a942248567dea9ab83b5e4f8bd02897fd929aeaa2da1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sanafe-2.2.9-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.6 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.9-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 21a340ddc22937db10b82dcf26f0c69c70d8198807bd854fd12122436e8b824c
MD5 7f78faaf54bd9f9ef28c01ce2e1c6a95
BLAKE2b-256 b83c7c4dd80086c4f4cb113a535d041df95dd5471b555f917c2488cbdc5fbfef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.9-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 55637bb1f8405716fe81afa51099ff1c2327041a67aaf5c8bae8731c4ed65be1
MD5 77aa827e7b62b3528ff4bce5cbddd38d
BLAKE2b-256 79ccc20be586304d6593993c9677ea1d82e2049381678e367a582ec67a48c2b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.9-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9749ca30ff1286bcd1fe502ab72c3bd3976c989acc79293637426224184fb759
MD5 cc7c6cdc5145e93e1a115d4e5fb0ca3a
BLAKE2b-256 336ac98b279d12143bf6b10fbdc5e45704b215719d03ee7ab49a9a0a9d41c478

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.9-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c62aee549451b8a7d734e582be37d50891f6940932f261a0e133f8bfd5cc9fc8
MD5 8618f7bf75fad177fe929416ec61c906
BLAKE2b-256 cbc11a3ac9813864e87fd2fe98c160949ecd9669d26cf4540fa8c148dcb6dedb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.9-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f353bd07a768458403e6641012bc323f803356221dc3026633ac5893b83fd3fd
MD5 9e0affbd034db0a07f2401c713e3ecaa
BLAKE2b-256 b1fc2db47aa6d8f965a52d6c3d41d28366474e12eeef564b2ecc68265457a81f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.9-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f051f69762ebbbc20b1cdf5cf2e01781240e65f3ab6eb1c0ce34f214be62ec01
MD5 bcdbfd4e438553cb12a0d55b0c748c3c
BLAKE2b-256 bf3d6f495996765ce6aedb13ec81403472982833240bf2174c3414e47bb250eb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sanafe-2.2.9-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.9-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 89c577932d0e877509b2f1e174e69bf38c4096c24a8ae745fefe6c3ed03238ea
MD5 0e00e355782bb5ca19f769fc496bb30e
BLAKE2b-256 78b72a2ef12a6dd750b0aa05c39911ba21c1cadccd1d77ff83f591061dc33a68

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sanafe-2.2.9-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.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 52a419d1e29c2cda2ae2b919f181a47a149935ca876e13c66d1834f7cad7496a
MD5 67672c46c1bad77c8cd68069d82ad2fa
BLAKE2b-256 8c8298ce7b1d3e836920b30ae860057a6824c8ed3c61a50e94b01cfe5ecedbf6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 06de9a8718fe896d8852b5592a66852302f6fd0784dd60f00d5e584f99b64682
MD5 1514923902f70d1a8e068b2e97619e69
BLAKE2b-256 07cd37a36fce79d7329ec9b4891b4751dc3d17ca30b48a621dde81858e9f73ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.9-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 35cc0d38591887e34133df0319422300631b076ad4d2107f8b7ce337b1bc8728
MD5 22b5a309126ee5e5f41e2fb44b83619e
BLAKE2b-256 dd4c6305dae3292b2db29c59069275d664e2f03e7e576c3122b41a7d38725f2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.9-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5ee7754c5dc661f492b466e83e3d2deeb3cf9969c63a6de95c43253ae6900b31
MD5 94056d2839ecb1aea5fa9d0405a5ed67
BLAKE2b-256 4a9a32794a53c2929850966d16196221a509893f36a4c2d27ebb9e09f5b41e00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.9-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a1d99d85c2f9e9a22cdd8d0fb2d36f98b23e2ac38795dc73ca79541e13571d05
MD5 0f3e40dd40f0b10699c5b59c7978c849
BLAKE2b-256 72de21e191787f68ec0ca546f4bf49eb992f2103888824bcce29a3bc426660b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50b63df962fc77ddc82248a220914df60f69822138e9318dc17bca6425d3d1e8
MD5 40663c38155b640b98a20be46575386a
BLAKE2b-256 69ba15be431a5842619d9e1266719851c1ac8f2019e10fdd9b94ebe46f6dc9bb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sanafe-2.2.9-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.9-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 d25ea648b2aede5c3ccfcb8940afc5d04f7473ae5acdb4ff8ad989491eac2560
MD5 39da495853394da4380d5d2f88b32040
BLAKE2b-256 4170e7ba1dc074ce82889f3b75466fc8ddf5dd43d4b98e4d4f50a533b3d7b34a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sanafe-2.2.9-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.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 73776694d66b555802ff3e52a1e24620a65ad0fb6196b470521379a33ab08a59
MD5 aca9802de91380ef1494aa5dfd3f2aa9
BLAKE2b-256 79240abe8ea3d6e85cdd91ee1da4f225300356b1f0b755f96c3f0660c4405922

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 378f4579b17331e04f18cad0106f32f750bc1d950ed72c7b175d0ab0559b3183
MD5 7c0aa0d2ebbad4a8f4b57831e78f7a81
BLAKE2b-256 d48eb713a34ce65bf787e59023157a17a82949c42282243b1e7bb00959009037

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2c0bdc9fcacc87f21ad665769ab49c16df93dab25ec562cddb6dcae382677805
MD5 18758a09abcfa2c5bf9d6226801496c4
BLAKE2b-256 484a86bf145479f1fee02dc1ca545e1ddb780916c4efe33142c5fdd3e6094ffe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.9-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c982e36f068edabf91afffc3ec1002456c9545f0c8cccc9d30b0a48cd08183c8
MD5 94cc4f398bf1c55c0dbd17f0d7785d3b
BLAKE2b-256 3952190d19d2dea1ace9e15465b0ddaf88c1397af3d1db90d29a76c92a58653e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.9-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 435ba858db350924b6a29c1b2051861e73c585ca79de1fd0f82da10e231d9efc
MD5 ecae4f0f1af17ec6a9a53d18d0ad1aa2
BLAKE2b-256 7993b477a904e5d7f7eca21e0fe981389447266853bed5cef1cab51ca186cc93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92136e618ed9f4446ecdbbf1e6fc476690d7205ea550db646696132017239851
MD5 39ac1d4d9b27b4b36ac843bf8fe7bab4
BLAKE2b-256 d6fbb9f6ec53115ff2d5ae35f33e0d2e8eb112f5e35a8dec49f8df16f2bc2756

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sanafe-2.2.9-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.9-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 c5ed4e11f336df150e540f0696ec41ba050be3f3bdce226df200675fe1022c6c
MD5 baf179de464d9cf334de8f41756b5706
BLAKE2b-256 dcc874a29b18bec4e6158a62ec599a3e125f157a972e947d9f5679a0c5323f8f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sanafe-2.2.9-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.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 50335590e8097b643800ccfa81ba501644400e5d1c17edfc4f4d5afba6a575ca
MD5 d93635518e00de8ddb03be0b7ce892d3
BLAKE2b-256 2f5ef8cf0edab7646858174deff6a373feafad790fe455e2586b5ebe74ee86cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ee1ada951409f6be007431c21fb0d99ff165693d7a9042846121b7eb933867d2
MD5 f5d8c601a8bcdd7336e5d2cbfeb9ed54
BLAKE2b-256 3e8751b1b069e6ae0c59617c47fbe3155caaa720a1fd0614fb77642426358047

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.9-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6bbd46dd477bfee88e5318e97f5da34aaebc9c13b986d3fe815cd4ff39113394
MD5 af1bd5ec6be17a045ca4797b236b21c4
BLAKE2b-256 dc55a1816ad0343f65b01094e6e2b931c9cb1887f665a81b3dbe82f7332338fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.9-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3d43b75a6edb95cb0eac12afcf9a5227ad55c8245d919925e51d2227b125cdea
MD5 dd072bbfd09f80f5bd506b6e856298d2
BLAKE2b-256 b44695797180e869f2927428baf371af37867acb0507585fe551e2503ecad087

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.9-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2455a8868b987b558df6a23eea71b0ff3df8768311a68727ad878f4500a3fdf7
MD5 4ac96a79af0d8762fc8a961d34506c40
BLAKE2b-256 f2cd93dbe8de65e23fb936656aa56bc6a4bc06f405010d841033bf941c4df13d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e265f3047d5615928172f9658352b1bf746953ff7f1ba0f707f30d191a854ff
MD5 63b51b734fc0e63dbb9236f27e16a7f2
BLAKE2b-256 2fa2ababac7587b1042ed96161c8fb6cf0b2d29a907ff106f57d02e2ad38b95d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sanafe-2.2.9-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.9-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 16d7cfcd697f2d2042f03fc21d49207e64a352f431de2879feba013037c7b16d
MD5 2a3dd576b703a6afb5441caddaafcf7c
BLAKE2b-256 3f56eb30d57e3b39275d61a07d6102557a66ddc3e2246d44ea73dd583b28c13f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sanafe-2.2.9-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.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 04912fad7132cd9de6cf094419cab94bb4bda9b5c2c7d11f8a500feea3d108cd
MD5 9064cb04077a4d4427693bfef00064c5
BLAKE2b-256 6726a76268c48654ed30df7091e89a4646ecd71cef8c627b5e9881eb7bd732c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7db97d81e5645b2f50989ea39e97e48be974b7d789a469d71f54caa2c033c1c6
MD5 db66ebd0f331d1f6530595cb298bd364
BLAKE2b-256 8f3f24206cbbda8067e81b3f8620857b34ed983222d91a65be169593f9c75fad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.9-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3c970a1569e44d020dc73fe0ea68bb14b41e785ea96cf7b6cac50ec2f10bbd34
MD5 b76f817352f58b34e6d42f88e607e8c1
BLAKE2b-256 d1701cce64d135615eb46321dc892a0d2ebd3b81e1a6d7358f998f8c85bff84e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.9-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8c2deb9e58fef651a48a18295611eba2a2b614e89c5cc102e37bff1a7a6e1c43
MD5 f9e4585e0bd4dd3d34f7d72902b83be0
BLAKE2b-256 5a31d33efadee9c248ce8b8e3254db65ed9a5177cca034f54a9b82e6430a36e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.9-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bfdc73fc14c5e9f36c3a9170e6731119812aa2730469d99e344732d4dcc458c4
MD5 9f87c6531023df011fb9d0e52408b5e7
BLAKE2b-256 ac35ba155282b9d4c9628786cfdf108abe80f34553fd45b0981cef4c6fc2fa30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 007f5b406ff44321f6a26fe235d827c1f2e1631ffe97ebd127d2fbe5b97d1199
MD5 63340705068e4435ae165870f7352859
BLAKE2b-256 6572cc482e467db9a963b11373458e1cf3b67ec06c48a1780dd5230349a2ce5a

See more details on using hashes here.

Provenance

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