Skip to main content

SANA-FE: Simulating Advanced Neuromorphic Architectures for Fast Exploration

Project description

SANA-FE

PyPI version Documentation Status License: GPL v3 DOI

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

Quickstart

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

Python

import sanafe

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

Standalone Simulator

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

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

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

General usage:

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

Command-line Flags

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

Installation

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

Custom Builds

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

mkdir build && cd build

Run the following command in this build directory:

cmake ..

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

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

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

Dependencies

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

pip install pybind11

Simulator Overview

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

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

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

Simulator Outputs

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

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

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

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

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

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

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

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

For more details, see:

Citation

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

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

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

Projects using SANA-FE

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

References

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

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

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

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

License and Acknowledgements

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

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

Contact

James Boyle: james.boyle@utexas.edu

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

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

Uploaded Source

Built Distributions

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

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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

File metadata

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

File hashes

Hashes for sanafe-2.2.6.tar.gz
Algorithm Hash digest
SHA256 ce2b7a6dac5464b0bd46a896a129629e2bf922ea99f08992c117a7f7d02be129
MD5 359ac2bc28f7a3e9779ee699b5720466
BLAKE2b-256 d478a3f094bef4c3853a255e68b6d7f1256be29a68f8cd13013707b3e488f89e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sanafe-2.2.6-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.6-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 ba8688191864ae78a4c3c22c9deca3bd72b2621797002d3db2bd36a7d71fa28a
MD5 cd96d52e8b8e0e3dd64c1bd7b60dbb6c
BLAKE2b-256 2f9cfc99f120fc322242e82ffc5065a75258ced6ae01e1c6a1abf55717d0e4da

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for sanafe-2.2.6-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 9a06b152169a19c5c2215aba5d554f36581500f0246f3c6c400cf8ec185a1b97
MD5 aecd39ce388b1a64c0e94acb21043c48
BLAKE2b-256 5bea1b557e7fc4c62b41b01135d0dac8066bc34a8301e063daaea99f11b39165

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.6-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e1134f471f2834179224e6fa5e52100fc9de01ae9c0169079887dd60e9e088e2
MD5 ca25971905ff7ff99c434e263a9b3e46
BLAKE2b-256 0889601c34d3f18bb180dfb4724b1049c50abca52f5adfcb0e352fa4eefe1e13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.6-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 11694e88f09b0427d78811c8019bd3f2b2b2bb27707d4e5a271bd4064491330c
MD5 1a192515080f8ae5823fd3626c079b8c
BLAKE2b-256 ad8b6531e731d2dafe008317a4707c274a69094ad96b29e0456ec27921f0ba17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.6-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 343aa13ccf8310a29df2456b82bf21c8f27d659daf6f3e59471fc73f0c323362
MD5 fb1ba399b043455693bd25cf2ddfc977
BLAKE2b-256 9e7a3d1450690902f97895481845d6c7b5301a1331c1e614dae13e5108074559

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.6-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 15d1cc4bc6e28c0f65742863e309e5b7c93649591b9ebd40f016180101f49524
MD5 7b8e7b4d711cb0924905ff530147aa6d
BLAKE2b-256 8f8494dfaedaa50552321f1cb32cab3a8c0b355e2cc821fe70399519ce8333da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.6-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a596ec67920c0a083b1096edce7d029593b5e773760840741df32b6c8490cbe
MD5 9313f7e3550c23c9f38c6389b38dac4d
BLAKE2b-256 98431ec92ffb28c2a97df85585d5da3936e2756c13a4da3a8e0b8b5e7f136ab4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sanafe-2.2.6-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.6-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 881570874f30375d01fa6bd181cefd8b50c9156b02e8f741d184f11d3c654a4e
MD5 22f4d45502558bcc09da919450cb0e1d
BLAKE2b-256 ae9ba07f8ff76e53ad6c47b1df297edb65cfa34f5177f8f915cc760d7c5d0346

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for sanafe-2.2.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 354e3e7d821d33e2598f405e5e46041025c24b6f04afe7f14718eb989ef130bb
MD5 362bd3eb061afb2ca7536550b70ac931
BLAKE2b-256 9e95bf7bea13cd3d9360900a54ae8c33e76d48266b77f2a28a91b101446ac2c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 346f65fc8313cca5fe239d8316da1c91a50c5b353bf3ac0b4f1b747918582404
MD5 6dae50053b720fc16f7ad0d68c3becb0
BLAKE2b-256 19c088e6cecebdd8f0f9f58a04cce5a80492cccaded5409de12e703edf85f560

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.6-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9b0cdaaeb6268a4b49e7ca94ea0ced139e522a730850a63b9e9e6cfaa7d923ae
MD5 f481d4fb2e84860ea1d1a6c41048efeb
BLAKE2b-256 1466547012c24181fcabb1cd4278367cba625ced9349d391298d66635725d9dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.6-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e0c4536e83b8aa591768d6f2caa573364c2d3c6e25ebbb4a99ece24ea7da6ad6
MD5 c9cae111895030edfb7c1606a49dc1d1
BLAKE2b-256 4d1e537444ef213f77813adcde19ffdd5f965ad95851d47e975da78639174284

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.6-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b2de83ce929c8421cd6d72943706f018bfba7acb32e03a25261571dac1f3cbd8
MD5 a96dbea5883318a6385551adcfe14bec
BLAKE2b-256 278d41d996b2353d6b8ee1c07bdfda23afddbfa456d0addc7d53d436569aaac5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ded05e18ef3b35b3d2e00c1f9844acdcbb1fa1a1a6be00a7f60e37441ca722b7
MD5 f106346e38d60bae548d05f2b860e57f
BLAKE2b-256 ec8a6973781317b568a06c8bd0e2ae9182e7c3ac444aa30ce8cce5a8863451aa

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sanafe-2.2.6-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.6-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 737f5dd3587c1b3175edd57d560043185eb900590f468f8068d9eb7ac89cf66e
MD5 c2e6afe59c1426dfb292245998cdd55a
BLAKE2b-256 051aa9767da1ee52a19eb8c1cb084d83ebf537d00df7f4c301ddcd3d5257757a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sanafe-2.2.6-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.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cbde2cbd8cf400abd60bc98afcdfbfb6b3094b59cf9e6eb28f4d386b408b870e
MD5 19f136c1ff78c1ac71926bcf0befdbb9
BLAKE2b-256 7b8e85e2f1e2fbe1dea2240fb898cc863171b49c1331285570a3a35d050c3253

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9ef28fb0f0c2ba3e97e20f5f97de51246ea6e4f33271add41ff2ae26aea60f31
MD5 b05266dc9122e2d72c0b45c2ce1d6569
BLAKE2b-256 60b78510b9b531125d0407e9667e18ed6a89530b9127109fe6a52e1aab24db8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6877ceb43a5b0a59c5f893d2c027fbc6ec18dd5ccc9c2819ccfbd35e8a3e82ae
MD5 88a9bcb7dad58bd7e5b6ef9816d8cce3
BLAKE2b-256 808164304e854e73c35ccfc0575cf73b1d29f0b1c8097e47467e317411e42f2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.6-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8c01389f188920e1300d1fabe5103359a265370ba140fbdb51ef0bcd34c77d80
MD5 0ac9701d149205a2d7ed3b765dac32f2
BLAKE2b-256 9acdfa0bbb39e7e6fc7ed83562aa52926ad8b163935a28bbf6368485a153aa59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.6-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c9a600a9df98b2f3569bb03f6980bcd4e45e03129008689d03c9bd6b67f9c676
MD5 a2becad18ca86e596d1884c6150ec289
BLAKE2b-256 f90aa7b4b6476dabb84bb2c9634906ab721cc553b2f7fc8cb10f849b2eb0d45b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 515aad937d6ca9ef9215cbdd70d03db4a6f3fecacd681b83cceaeb307f7ba1e7
MD5 eb812f4811dce8ac1e84bb1e4db68083
BLAKE2b-256 09a6fe632d04738ba1c6fe60185d5cdb93196d3a9230e2c9c2ae5c3b80f68bb1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sanafe-2.2.6-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.6-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 adb90c42cc931a9bddf27d0c1915914046c2bb1e04e7bead97bf12fe9f803940
MD5 deb690809a62483a785074945b76fa50
BLAKE2b-256 843824addd6c4a3c2268598ec1afd011ae9bdbe035492a7823a35e4343dd4581

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sanafe-2.2.6-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.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8a628f563e16077d2150341e6e167dc63ae10a16a93c050fff5dc482b8012149
MD5 3c9bc9a4f2928bbeed718bb53bd6290b
BLAKE2b-256 1600e9e2260b04743e08773036d32c32a7d3335568114714012a53dcf8f15a74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9cff80851c2be88fe20289f772da9c571f0938e92e18d3cc154f12818f6fcf25
MD5 cde03cd47cae87bd4f19d18659f22a9d
BLAKE2b-256 c881e96b39d0ea779373475465b62248f1c2aa58e6e4b28edcf663a13cc13cab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b317145f1baf7a25559445e627a3c40fa90f87adc6b4b225a5ab82ba0f6ff42a
MD5 59a51b734399134a464e644f401f6ad9
BLAKE2b-256 0c51e59259839a74cd10237ffd17228c65289e18d3f4e7500205009c05e40d0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.6-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c815da5cf44517d2171253f935b509c44d43ca6a7e1da03340cbd6b748572655
MD5 1866306fc7e768496a8018dcb4724386
BLAKE2b-256 8b12bfcdcc048c346e697467eb7ca76913a12fc54e50be66bfad3a69a08a787c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.6-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7ad2b154b7887f8bde43f530675735fec200f25b3fe04945d1d51d84816a837b
MD5 1196bfdd3eb9163e98465e3438025abd
BLAKE2b-256 70756da92d1c76471c5facc6a3aca47fe62d26e986318f41774aece8a919038b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aaab8f38859654e7106c17ebb47f4a06da8cecef3fb2e07b642fc3132551b82a
MD5 38d0d5a584863bed04811eeb7c966151
BLAKE2b-256 559d2c5e8cd950da13edacdd61ff7f80f3d250cf5f5eebae25c1c78a7b019719

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sanafe-2.2.6-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.6-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 f3d2c5ab6a79967f7bbe7c525a439a90f3199d0a8f7f1fb4e9b79a1c11795b57
MD5 fe8bd645870eeea1757e7bb68cee9040
BLAKE2b-256 c9387331ef796767e63bca21809c1b4da262c60904bc557ab54004e93031990d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sanafe-2.2.6-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.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 13b548fa3a9463b7a37dbfccbbbcaa60aae8a483de2393f4224765cc6a824612
MD5 c26a9a3b7622be08ce2194412ba2712b
BLAKE2b-256 2b7cd90fb95c185cd4cc192dd27d029aa3a3aa60994cc2db344bfca76ef66eb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 608c81aec8d9abd412a09506362c6ee736b87f41d3f39358c39856be8a9701b8
MD5 ba009a1a66bd23ee786b669068b9abd3
BLAKE2b-256 1c7ef7d152012a690ac735c9a308f52f4d44d0c6705a7e071fd4e62a181eb1f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8b60726ac9d5dc59f4bed4856c76e3fa48aba7acbead41275dd47b9aefa9f863
MD5 5ea80887b26026860d1965f8ff117f79
BLAKE2b-256 141106511761d19db2e809f79e16150fa19b6ba0e0fcb5ecf3bb456c04b3b127

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.6-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4b548c724634fb9ba47c88cdb2f15fd6cc73984bab8e72976aac0ab352bed313
MD5 4f2b646f330595eb1c343ca6339e62d5
BLAKE2b-256 1a5b9944a370c980f8a12d826921184c6dd6aa90abd3360346f95058f9b7c42f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.6-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 44e55b965a818f0bcb8ea5aba400abc8e5353e4082a66aba175ccd57acc6425d
MD5 4ed381808f2b2ef0f278e73bb281fd7a
BLAKE2b-256 fad6edc4c08c9376b5e408688af04034d271be46506bd780ed0d9c17be4c53a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6970c18666288f40ced55fa8d491ae0fcfe92882b91b300ec0af2e413abf89c9
MD5 4abb9d515242883681b04661670c4716
BLAKE2b-256 ee646a8aac823f2e086e088e896b022bc8a48db31382903815586c69e70b56f7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sanafe-2.2.6-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.6-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 2080825b1e0fadb63908e1eb3a3f47710baf04573df406dabe0e97e2bb8cf9a8
MD5 77e9ddf70e4679d14d19419764aa3406
BLAKE2b-256 e3f0874b38890f2744ded66bf9e3c37ac0e20e7267ff78ffcf0b8fd558a5255e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sanafe-2.2.6-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.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c8217030bb4f864048032d4526af5ce82463b965d5e5cc774034d653a096e34a
MD5 166e6b0541f475a2f2f6ac6113579d72
BLAKE2b-256 c252588d4dcf5a0f8029b1c487b301078de387ff044bdc9fdca7b17e1b0e1c27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8c9d42a0065495364ff470cce0cddc0a37e721db784c7aa6610c9bde4948cb1d
MD5 604959e340b1d058c4c9901a78a40624
BLAKE2b-256 601adf835efddada592a43e17e6f7b294c1701ddcac41ced69826b93e250d175

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e857ef7fbefcd22d7f0ead84baed3cfeee369ab0a119ddd9876892e830b25129
MD5 199ef88071c1e4646c2431a519df12b3
BLAKE2b-256 955fff7ae799870ffb43d2619733835be82a0ffc121199aab055b9595e3aa614

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.6-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3b4fbf32e494829aeb39d2deadf216201acb1c5df8b3a759ae69933787bd5fec
MD5 fb5154639bea8fcddc686116eb118114
BLAKE2b-256 14d8747817bbee11ab80be1c49468a8a8bed236026631f26fb331a3400144280

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.6-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4ffbb634094275d079019a5040f3d5b07882a349583bb984787af29aea186b26
MD5 28de88a5d526dc141463152d3bf79039
BLAKE2b-256 746fadee1b9f133a925b2d17905effe1350a5f52cfe0c2adca28636f2969fd62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sanafe-2.2.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3025108cdae03f79b31ae422114b1dc23ee93a536ae1911fe1c54253835dd15
MD5 5dcf19b871fe03556b0d7653c3c4819d
BLAKE2b-256 b32ccb04241b8d97b30d3be020a1b521ff8039921061717af708715c8931e3d5

See more details on using hashes here.

Provenance

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