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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

File metadata

  • Download URL: sanafe-2.2.7.tar.gz
  • Upload date:
  • Size: 307.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.7.tar.gz
Algorithm Hash digest
SHA256 1705164c31f38e977a6f85f3066afee784a82d8adbc8995a06e358c03c285721
MD5 f17719efeb0f0e5bea7b3e0c8d3503d6
BLAKE2b-256 667d5cb1d894e6f4ca0cb8dfd02b588e47b3986e890ed171379f88136557b159

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sanafe-2.2.7-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.7-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 5630de239a348e8b1ce9655103688a53739e4ce8b2b5d23bdff11c85236913f5
MD5 f73aa6f5c7ba8f730f6f520870e3c099
BLAKE2b-256 d9c00a8d7bdeac768753d5bb44c30e6da4166993430d0765c5d1e14d60f4dc16

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sanafe-2.2.7-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.7-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 921b53084454432cf6022078e4f6529b4a5fbcba18c8f006a699cbcb099d2cd5
MD5 8c54d0d3ace813e320a99c0f378f09d9
BLAKE2b-256 5971ad9e3f7cc40b738e61b9bc53b5213ab7c2798c618c88ca065fb4f9eca628

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.7-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8431ff19705d883365ef2026bca00271c2d52f6b1ef0e1537a1fbccdedf995f8
MD5 817666b473e44db4b143fb5ceea54a96
BLAKE2b-256 0b09265bea12476e0a14fcc62737a604a31a2358ba62eaab15cd913b881124a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.7-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 da20db88ad3763c89a7fb68cc6cec122bc1ecb9c527951974b3af8a0499c4707
MD5 2b40b9657e09f9821227113fa7c78391
BLAKE2b-256 778d1442a997abe68b980882ef1453c753f9517d1de128f856bf2a3a33befc36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.7-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ba67bfe5ddafedb1539ad6c787e6bd585865f787f25732a335f8a50ff38fff2c
MD5 d3f4c60b788dfc70b81683b645fbc499
BLAKE2b-256 bd0de5c2b790b865c3c60627e389f7b0cf4ba671810f1def2c73571f9d2771cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.7-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f0ccec89704a64e5b8bedfcb0210d7e240b292d97222661a055cbab805060433
MD5 778261f6782b3366f090c69f2b10ff11
BLAKE2b-256 740e4fc26cd570674fdec13bec9a4af02adbf0a06e43ca0cdb7efd71f40f44a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.7-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc70e856b6b8f8adba6c9ad68f6addc9fadfc927d51251bd4bbc0718be19e9f2
MD5 177f90fe98f4f7de7a9d3349f74e2681
BLAKE2b-256 762472bd2d5f61bdecd4ae23071ded6ef0daf2207dc6669b07da52e517750d60

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sanafe-2.2.7-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.7-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 ba1fe601e8fb64be5471ea971300c0286d8a100261a42084181d657c8b0caf1d
MD5 434bd4786948db5c9545d6d3d0ba3470
BLAKE2b-256 f6647505f81dd2d5a479710d7b59cbfc54ef5c5539b31fe8050bde0b202ff4bf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sanafe-2.2.7-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.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8f0e5b0469c6e71e6678450d3c37c898a30a1ba38028f20bd39d4d5f6b9188e3
MD5 d93e9f641ce02b0dbee51b748759112e
BLAKE2b-256 7953e1ad42939cd2cbd028854412f572ef271803315438bed42ea03ba76d8675

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.7-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b14eee1861769f4c38f497d692ea1d312c3e9f790ca2202d590006dd0b8424fa
MD5 22575655ba1e3b74bce68b66ac89722f
BLAKE2b-256 27467fa62c4470ea149ee200476a285d4ac3555b33cda2891fc5244311f53fc3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.7-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 93e6616ea2715da949a7a9a1708b7f3078a067eda670a39f8912130931a43b52
MD5 f16329a4abc8607a45c410eea1d9db3b
BLAKE2b-256 abc7f1d7dc0a33926d92d1ade601ccdb23db474ba6e08255ca81d1b5f10bc853

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.7-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a6ebf835e72e9cf6fdc20dfc80162771d803f8d6c419a0ff3c3a9a89c3d17094
MD5 9c0784c097105015cfc32aa77d344afd
BLAKE2b-256 b9e205ba606c5c5a4bd9c2f37de66e1d8b3460deb75b1f91eae0ea85ebfcc0b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.7-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 27878a47fb3569d422a5611328c0973c999c06026e402f96d947360a76b3684d
MD5 cc46264d8d941a5b6d495d30675977b1
BLAKE2b-256 06060300cfab81daa1cd0be53f95e52e5b80af8a463845c30880453158524ad0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 415a6ae94acd4d6820d3d1ad2fcc053826278a130ad9140396405748baaa7dce
MD5 70a26c0d4f797b53270d36324b11b2b8
BLAKE2b-256 dc8a92421520ab96250f268a57205c6a70d0306fe71161610183afd7f6f3e58b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sanafe-2.2.7-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.7-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 b878610d2b6597ddea50106ff2ab04b1d940ceb194b12d86819e30190893d52c
MD5 9a36f3b833921b17327fc2c1c6902eba
BLAKE2b-256 b4159ef9041b49f75f7707d592b1de5cb42bbf0f4fe104f9c327a92715519523

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sanafe-2.2.7-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.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 879181b677cfbc131ced25f98b636bdbdb7f17fd84479ec6e62e0cbf6d83af31
MD5 ea7fe9c91708507ba7181c90e9aa1694
BLAKE2b-256 9012a126c1162a99cc4f8ca6f2cd2a5fe129d628ebe7bd6aea452f42b6eea4b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9ed0f40aa92bc90d96f65c030efe5e049371be46695dd543b619c1108cdedf0d
MD5 46c8c0c139c54957905dffa93eb14138
BLAKE2b-256 9fcfe9dff80d4cf6f06941e3a0fbc40ba4417106e201b24194129c4f53d48a66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 af257ed7ba6cc7877f3b3e1dbff3565e25a4c8a8c7dd215a14b8d7c06b101624
MD5 3e678abb7acc63a5f83c2725186e8f8e
BLAKE2b-256 13446d3923d0a6d6f31cf5b1b4282aa733390ec24f37e9502bf4c97fd34dad1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.7-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f818c3dc5cf65cbac0ab2406ef9fa6818839acc88b3d3dff988b468198ae7284
MD5 0b28d905db47c797fa3083d45d9a4744
BLAKE2b-256 863f77e5aa3bf5aa03d64ae8009054866a46361c76ccb47dcf1708662f260008

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.7-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eab8a9729fc56caf7736c89dde8485b9464c0a1389cb2b8ad188c7f13ffdfec7
MD5 82b574624e4e1ecf2604fc2e5147833d
BLAKE2b-256 337efb489515d0d63496efbcf155938111dacfcf98a4b652c57ee81412cab852

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f757c8944437a8daec8ed83b6f04b006972c126ba39547da095fb312f277dd6
MD5 32d5245e6d6ca486d3fdce00c96ba592
BLAKE2b-256 06d31b5baddc31c7fe62167c506b185abd7177acd599319cf99ec220444306d8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sanafe-2.2.7-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.7-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 3a7104c6a9fc7bd3bf12f6669a03dde37a1f79d4ebc4a23136293f6376d8f368
MD5 4ecfa36ee3ee4408783c4c77584400a0
BLAKE2b-256 ff8f8154cac05afd6e36f3fa05f09e175ed5a4eef123513de652df9da8e27f76

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sanafe-2.2.7-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.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 acd53d9e8c0c3b27910d35ec9642c04764357a81f37aed1543edccab35466aa8
MD5 4168f9f1c155e9b8db549024de6e9be8
BLAKE2b-256 30e6c5b22f8e325e42a8d25853f4296b85857a27c7b9b0f5076019d787034bac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a6a492c7c4b132db7d8057970dd0d2f8c9389041b2c97d27934114444db53ddd
MD5 a9f7463bdfa54f571f4a69a9a78078bf
BLAKE2b-256 d52c97bc011126fd35691a5217f7c22ed8dfc1178fc0c18912e1d4f94966ea30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c6a0acd99c7c08c64293f4295328fe7352ab663c4d57f28e088798afefdc0a06
MD5 8ebc4dc95f8a635097565b21f79e1a2b
BLAKE2b-256 48b9f881e440f22027e2c857f4a45074bd8c7fcd3aa0f5f49a18da3ed13458a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.7-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a88a41d75e3610d8dd294ba82e8675b0d255af0b75c45c02cbf8ba8ca4784b33
MD5 204349b5aefc3083cc41d0f31c53ef2c
BLAKE2b-256 08d3a1eb1b4d12266aa26cbc3c1890b37afc3ad1d18158165109e7df3db5be0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.7-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 edd52f1f1516bde7d5aef8015853a276e65a2b9177d3929a3e1e06798e81177e
MD5 b23b1642991875fd516ef380d34fc335
BLAKE2b-256 3aa4eb0d777b298915c1ece166143508e3e811a96503a00f796e49e3df0191d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee51d27b08e52538223e002baf0523d132584bc0fddf24ef03b85306386f5dec
MD5 341b63b6a3166371ca6fb15342b99bb1
BLAKE2b-256 e7387de7d239741279bb379117cdcb8afaa8b262b8dd03e1162d43fe5ba04855

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sanafe-2.2.7-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.7-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 953ebd003fde12dfab33b30322c7db66791cfdc0c6af71c8178643a6d19497ec
MD5 dc857dcb6d05e3392e8d8e9ef0184500
BLAKE2b-256 35c6216ac3558be321bb1ee9b0b8eb5f765f673ec7de253eae933feffbacda8d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sanafe-2.2.7-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.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 74371bb4f3a67b7c438be6a63da7cf179bb73edd7487c9e5d41042d33021c441
MD5 28526d0a960040ca229b2230018c5f50
BLAKE2b-256 d0b73a3692397f18e16e0504e7d72baaadd29146c28fc17ca33b3a8cf25f80e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b24bb1dc1aa710cf45a42690a35498f1cdb231584465f29ccd694eb00fcb841b
MD5 e5b4748f6a63f39853e0e603c3fd6c54
BLAKE2b-256 b4040d4f6624488bb4cbf18a3eb0da7e60dcd67862e6f7ef32c0175766e743f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 97d14f56a735cc9eecfdc37c8afac5eea3f81a55a78028e05cbe6131fb4f18dc
MD5 0f21e36bec466f688a496589d285639d
BLAKE2b-256 2152411615f843c23e8d8c83a08ed6e3e90d67ce5b0a7272ad950dc13be8b68f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.7-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 150cd6fb8ed9f71424f3d65281d9e876d4e9bc1919e93c685366b0f1a803ee85
MD5 55e31094656698bba64c9e942bf8f3e7
BLAKE2b-256 26573d9cd71c4935bc699b55dc9228e31d99b44326b34b39764591913e7a86bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.7-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1a84d00c710dc31ff33acfde0d7081f672e8132f1dfff25a0b3c7f31dd100331
MD5 a8f664d8fe8b4ac9eba0203fd87d8eb3
BLAKE2b-256 79fecbcc0e2cc92edf647f8525764582ba954d735913a66189034d6d9646dc62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b44078de517af8a06d8a62b13e249077e8789e576bd4d2b3c72793d522fee42
MD5 41729dc92be0cdf708395c48d384d5ba
BLAKE2b-256 5d24c2f7b6a4106bc73c425ca21ac1a363723c3a2ceafec2b619aa8e071e647f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sanafe-2.2.7-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.7-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 046dfe6d919ec56e692dd6cf593cac4d0a9fde1a79f9d4bd32a2e243aec45647
MD5 75b09e3f2d3b7f5cf35bf53353dc4148
BLAKE2b-256 e00057d896b8fef4cf1ed8a2252ba373a4d10b95bcef00d40caad399cab6e9ea

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sanafe-2.2.7-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.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c47d6cf64f1a18c22d2e3613110cbf42f2f4c439dae57de342ced0d583b99859
MD5 6ab5a4c31deedf9b5c152ece8491bf5b
BLAKE2b-256 8874f15b12ef8bc8cd28b695d687fcd755b326a5ee5b00985cf76afcd5756606

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5b03d616fa91672a90912e747bfb91d4de360ef93d213f027ac147bf9a3e628
MD5 d3e7f72912d096ab2566ee52bece2669
BLAKE2b-256 25a2158a1b443496995ae0138681c985972a2be50f52154eaeded2917f2c79b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a40df39aba076348903c07984993de08b93f463a79772b3c951807d480fd6b84
MD5 94251c767c87fa61d08b6f62d3a224ff
BLAKE2b-256 4ec07d3a04350bfc53df0267d6e47c12e756a67d8bc705813b4a13bc7fd56178

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.7-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e790d55c4b379d70d3cf2605a6f2f37509a93e4512b33f6b314a0e428b1e8bd5
MD5 35914fb0b0c44ab92908d4e0840fc920
BLAKE2b-256 1972df4b9ed92148942496741f0db2b2a04423a5a17382fbaf91584ed655df1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.7-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 032f0ecbc25bd49fe50102d0d6db60c69c80855774929e738837220f9bf5d667
MD5 e087c2598b21c90f4aa0c31a5533906c
BLAKE2b-256 0c3fe3cec2ce8a0e4e8eaeef01cddf71f483e45a31c65eabaa7deb9d66e55856

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81c42db14fd5fa1282ef88e46827fbd15b10c1fc34470fced796a9334b03e656
MD5 a79f0c5661e1a83a3aad6386209167af
BLAKE2b-256 4ef345d0bfb9416aba72a55276183aea58bbd6df1e29b8db7911bd1107130e10

See more details on using hashes here.

Provenance

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