Skip to main content

Portable mixed-precision BLAS-like vector math library for x86 and ARM

Project description

SimSIMD banner

Computing dot-products, similarity measures, and distances between low- and high-dimensional vectors is ubiquitous in Machine Learning, Scientific Computing, Geospatial Analysis, and Information Retrieval. These algorithms generally have linear complexity in time, constant or linear complexity in space, and are data-parallel. In other words, it is easily parallelizable and vectorizable and often available in packages like BLAS (level 1) and LAPACK, as well as higher-level numpy and scipy Python libraries. Ironically, even with decades of evolution in compilers and numerical computing, most libraries can be 3-200x slower than hardware potential even on the most popular hardware, like 64-bit x86 and Arm CPUs. Moreover, most lack mixed-precision support, which is crucial for modern AI! The rare few that support minimal mixed precision, run only on one platform, and are vendor-locked, by companies like Intel and Nvidia. SimSIMD provides an alternative. 1️⃣ SimSIMD functions are practically as fast as memcpy. 2️⃣ Unlike BLAS, most kernels are designed for mixed-precision and bit-level operations. 3️⃣ SimSIMD often ships more binaries than NumPy and has more backends than most BLAS implementations, and more high-level interfaces than most libraries.

Features

SimSIMD (Arabic: "سيمسيم دي") is a mixed-precision math library of over 350 SIMD-optimized kernels extensively used in AI, Search, and DBMS workloads. Named after the iconic "Open Sesame" command that opened doors to treasure in Ali Baba and the Forty Thieves, SimSIMD can help you 10x the cost-efficiency of your computational pipelines. Implemented distance functions include:

  • Euclidean (L2) and Cosine (Angular) spatial distances for Vector Search. docs
  • Dot-Products for real & complex vectors for DSP & Quantum computing. docs
  • Hamming (~ Manhattan) and Jaccard (~ Tanimoto) bit-level distances. docs
  • Set Intersections for Sparse Vectors and Text Analysis. docs
  • Mahalanobis distance and Quadratic forms for Scientific Computing. docs
  • Kullback-Leibler and Jensen–Shannon divergences for probability distributions. docs
  • Fused-Multiply-Add (FMA) and Weighted Sums to replace BLAS level 1 functions. docs
  • For Levenshtein, Needleman–Wunsch, and Smith-Waterman, check StringZilla.
  • 🔜 Haversine and Vincenty's formulae for Geospatial Analysis.

Moreover, SimSIMD...

  • handles float64, float32, float16, and bfloat16 real & complex vectors.
  • handles int8 integral, int4 sub-byte, and b8 binary vectors.
  • handles sparse uint32 and uint16 sets, and weighted sparse vectors.
  • is a zero-dependency header-only C 99 library.
  • has Python, Rust, JS, and Swift bindings.
  • has Arm backends for NEON, Scalable Vector Extensions (SVE), and SVE2.
  • has x86 backends for Haswell, Skylake, Ice Lake, Genoa, and Sapphire Rapids.
  • with both compile-time and runtime CPU feature detection easily integrates anywhere!

Due to the high-level of fragmentation of SIMD support in different x86 CPUs, SimSIMD generally uses the names of select Intel CPU generations for its backends. They, however, also work on AMD CPUs. Intel Haswell is compatible with AMD Zen 1/2/3, while AMD Genoa Zen 4 covers AVX-512 instructions added to Intel Skylake and Ice Lake. You can learn more about the technical implementation details in the following blog-posts:

Benchmarks

NumPy C 99 SimSIMD
cosine distances between 1536d vectors in int8
🚧 overflows
x86: 10,548,600 ops/s
arm: 11,379,300 ops/s
x86: 16,151,800 ops/s
arm: 13,524,000 ops/s
cosine distances between 1536d vectors in bfloat16
🚧 not supported
x86: 119,835 ops/s
arm: 403,909 ops/s
x86: 9,738,540 ops/s
arm: 4,881,900 ops/s
cosine distances between 1536d vectors in float16
x86: 40,481 ops/s
arm: 21,451 ops/s
x86: 501,310 ops/s
arm: 871,963 ops/s
x86: 7,627,600 ops/s
arm: 3,316,810 ops/s
cosine distances between 1536d vectors in float32
x86: 253,902 ops/s
arm: 46,394 ops/s
x86: 882,484 ops/s
arm: 399,661 ops/s
x86: 8,202,910 ops/s
arm: 3,400,620 ops/s
cosine distances between 1536d vectors in float64
x86: 212,421 ops/s
arm: 52,904 ops/s
x86: 839,301 ops/s
arm: 837,126 ops/s
x86: 1,538,530 ops/s
arm: 1,678,920 ops/s
euclidean distance between 1536d vectors in int8
x86: 252,113 ops/s
arm: 177,443 ops/s
x86: 6,690,110 ops/s
arm: 4,114,160 ops/s
x86: 18,989,000 ops/s
arm: 18,878,200 ops/s
euclidean distance between 1536d vectors in bfloat16
🚧 not supported
x86: 119,842 ops/s
arm: 1,049,230 ops/s
x86: 9,727,210 ops/s
arm: 4,233,420 ops/s
euclidean distance between 1536d vectors in float16
x86: 54,621 ops/s
arm: 71,793 ops/s
x86: 196,413 ops/s
arm: 911,370 ops/s
x86: 19,466,800 ops/s
arm: 3,522,760 ops/s
euclidean distance between 1536d vectors in float32
x86: 424,944 ops/s
arm: 292,629 ops/s
x86: 1,295,210 ops/s
arm: 1,055,940 ops/s
x86: 8,924,100 ops/s
arm: 3,602,650 ops/s
euclidean distance between 1536d vectors in float64
x86: 334,929 ops/s
arm: 237,505 ops/s
x86: 1,215,190 ops/s
arm: 905,782 ops/s
x86: 1,701,740 ops/s
arm: 1,735,840 ops/s

For benchmarks we mostly use 1536-dimensional vectors, like the embeddings produced by the OpenAI Ada API. The code was compiled with GCC 12, using glibc v2.35. The benchmarks performed on Arm-based Graviton3 AWS c7g instances and r7iz Intel Sapphire Rapids. Most modern Arm-based 64-bit CPUs will have similar relative speedups. Variance within x86 CPUs will be larger.

Similar speedups are often observed even when compared to BLAS and LAPACK libraries underlying most numerical computing libraries, including NumPy and SciPy in Python. Broader benchmarking results:

Using SimSIMD in Python

The package is intended to replace the usage of numpy.inner, numpy.dot, and scipy.spatial.distance. Aside from drastic performance improvements, SimSIMD significantly improves accuracy in mixed precision setups. NumPy and SciPy, processing int8, uint8 or float16 vectors, will use the same types for accumulators, while SimSIMD can combine int8 enumeration, int16 multiplication, and int32 accumulation to avoid overflows entirely. The same applies to processing float16 and bfloat16 values with float32 precision.

Installation

Use the following snippet to install SimSIMD and list hardware acceleration options available on your machine:

pip install simsimd
python -c "import simsimd; print(simsimd.get_capabilities())"   # for hardware introspection
python -c "import simsimd; help(simsimd)"                       # for documentation

With precompiled binaries, SimSIMD ships .pyi interface files for type hinting and static analysis. You can check all the available functions in python/annotations/__init__.pyi.

One-to-One Distance

import simsimd
import numpy as np

vec1 = np.random.randn(1536).astype(np.float32)
vec2 = np.random.randn(1536).astype(np.float32)
dist = simsimd.cosine(vec1, vec2)

Supported functions include cosine, inner, sqeuclidean, hamming, jaccard, kullbackleibler, jensenshannon, and intersect. Dot products are supported for both real and complex numbers:

vec1 = np.random.randn(768).astype(np.float64) + 1j * np.random.randn(768).astype(np.float64)
vec2 = np.random.randn(768).astype(np.float64) + 1j * np.random.randn(768).astype(np.float64)

dist = simsimd.dot(vec1.astype(np.complex128), vec2.astype(np.complex128))
dist = simsimd.dot(vec1.astype(np.complex64), vec2.astype(np.complex64))
dist = simsimd.vdot(vec1.astype(np.complex64), vec2.astype(np.complex64)) # conjugate, same as `np.vdot`

Unlike SciPy, SimSIMD allows explicitly stating the precision of the input vectors, which is especially useful for mixed-precision setups. The dtype argument can be passed both by name and as a positional argument:

dist = simsimd.cosine(vec1, vec2, "int8")
dist = simsimd.cosine(vec1, vec2, "float16")
dist = simsimd.cosine(vec1, vec2, "float32")
dist = simsimd.cosine(vec1, vec2, "float64")
dist = simsimd.hamming(vec1, vec2, "bin8")

Binary distance functions are computed at a bit-level. Meaning a vector of 10x 8-bit integers will be treated as a sequence of 80 individual bits or dimensions. This differs from NumPy, that can't handle smaller-than-byte types, but you can still avoid the bin8 argument by reinterpreting the vector as booleans:

vec1 = np.random.randint(2, size=80).astype(np.uint8).packbits().view(np.bool_)
vec2 = np.random.randint(2, size=80).astype(np.uint8).packbits().view(np.bool_)
hamming_distance = simsimd.hamming(vec1, vec2)
jaccard_distance = simsimd.jaccard(vec1, vec2)

With other frameworks, like PyTorch, one can get a richer type-system than NumPy, but the lack of good CPython interoperability makes it hard to pass data without copies. Here is an example of using SimSIMD with PyTorch to compute the cosine similarity between two bfloat16 vectors:

import numpy as np
buf1 = np.empty(8, dtype=np.uint16)
buf2 = np.empty(8, dtype=np.uint16)

# View the same memory region with PyTorch and randomize it
import torch
vec1 = torch.asarray(memoryview(buf1), copy=False).view(torch.bfloat16)
vec2 = torch.asarray(memoryview(buf2), copy=False).view(torch.bfloat16)
torch.randn(8, out=vec1)
torch.randn(8, out=vec2)

# Both libs will look into the same memory buffers and report the same results
dist_slow = 1 - torch.nn.functional.cosine_similarity(vec1, vec2, dim=0)
dist_fast = simsimd.cosine(buf1, buf2, "bfloat16")

It also allows using SimSIMD for half-precision complex numbers, which NumPy does not support. For that, view data as continuous even-length np.float16 vectors and override type-resolution with complex32 string.

vec1 = np.random.randn(1536).astype(np.float16)
vec2 = np.random.randn(1536).astype(np.float16)
simd.dot(vec1, vec2, "complex32")
simd.vdot(vec1, vec2, "complex32")

When dealing with sparse representations and integer sets, you can apply the intersect function to two 1-dimensional arrays of uint16 or uint32 integers:

from random import randint
import numpy as np
import simsimd as simd

length1, length2 = randint(1, 100), randint(1, 100)
vec1 = np.sort(np.random.randint(0, 1000, length1).astype(np.uint16))
vec2 = np.sort(np.random.randint(0, 1000, length2).astype(np.uint16))

slow_result = len(np.intersect1d(vec1, vec2))
fast_result = simd.intersect(vec1, vec2)
assert slow_result == fast_result

One-to-Many Distances

Every distance function can be used not only for one-to-one but also one-to-many and many-to-many distance calculations. For one-to-many:

vec1 = np.random.randn(1536).astype(np.float32) # rank 1 tensor
batch1 = np.random.randn(1, 1536).astype(np.float32) # rank 2 tensor
batch2 = np.random.randn(100, 1536).astype(np.float32)

dist_rank1 = simsimd.cosine(vec1, batch2)
dist_rank2 = simsimd.cosine(batch1, batch2)

Many-to-Many Distances

All distance functions in SimSIMD can be used to compute many-to-many distances. For two batches of 100 vectors to compute 100 distances, one would call it like this:

batch1 = np.random.randn(100, 1536).astype(np.float32)
batch2 = np.random.randn(100, 1536).astype(np.float32)
dist = simsimd.cosine(batch1, batch2)

Input matrices must have identical shapes. This functionality isn't natively present in NumPy or SciPy, and generally requires creating intermediate arrays, which is inefficient and memory-consuming.

Many-to-Many All-Pairs Distances

One can use SimSIMD to compute distances between all possible pairs of rows across two matrices (akin to scipy.spatial.distance.cdist). The resulting object will have a type DistancesTensor, zero-copy compatible with NumPy and other libraries. For two arrays of 10 and 1,000 entries, the resulting tensor will have 10,000 cells:

import numpy as np
from simsimd import cdist, DistancesTensor

matrix1 = np.random.randn(1000, 1536).astype(np.float32)
matrix2 = np.random.randn(10, 1536).astype(np.float32)
distances: DistancesTensor = simsimd.cdist(matrix1, matrix2, metric="cosine")   # zero-copy, managed by SimSIMD
distances_array: np.ndarray = np.array(distances, copy=True)                    # now managed by NumPy

Element-wise Kernels

SimSIMD also provides mixed-precision element-wise kernels, where the input vectors and the output have the same numeric type, but the intermediate accumulators are of a higher precision.

import numpy as np
from simsimd import fma, wsum

# Let's take two FullHD video frames
first_frame = np.random.randn(1920 * 1024).astype(np.uint8)
second_frame = np.random.randn(1920 * 1024).astype(np.uint8)
average_frame = np.empty_like(first_frame)
wsum(first_frame, second_frame, alpha=0.5, beta=0.5, out=average_frame)

# Slow analog with NumPy:
slow_average_frame = (0.5 * first_frame + 0.5 * second_frame).astype(np.uint8)

Similarly, the fma takes three arguments and computes the fused multiply-add operation. In applications like Machine Learning you may also benefit from using the "brain-float" format not natively supported by NumPy. In 3D Graphics, for example, we can use FMA to compute the Phong shading model:

# Assume a FullHD frame with random values for simplicity
light_intensity = np.random.rand(1920 * 1080).astype(np.float16)  # Intensity of light on each pixel
diffuse_component = np.random.rand(1920 * 1080).astype(np.float16)  # Diffuse reflectance on the surface
specular_component = np.random.rand(1920 * 1080).astype(np.float16)  # Specular reflectance for highlights
output_color = np.empty_like(light_intensity)  # Array to store the resulting color intensity

# Define the scaling factors for diffuse and specular contributions
alpha = 0.7  # Weight for the diffuse component
beta = 0.3   # Weight for the specular component

# Formula: color = alpha * light_intensity * diffuse_component + beta * specular_component
fma(light_intensity, diffuse_component, specular_component,
    dtype="float16", # Optional, unless it can't be inferred from the input
    alpha=alpha, beta=beta, out=output_color)

# Slow analog with NumPy for comparison
slow_output_color = (alpha * light_intensity * diffuse_component + beta * specular_component).astype(np.float16)

Multithreading and Memory Usage

By default, computations use a single CPU core. To override this behavior, use the threads argument. Set it to 0 to use all available CPU cores and let the underlying C library manage the thread pool. Here is an example of dealing with large sets of binary vectors:

ndim = 1536 # OpenAI Ada embeddings
matrix1 = np.packbits(np.random.randint(2, size=(10_000, ndim)).astype(np.uint8))
matrix2 = np.packbits(np.random.randint(2, size=(1_000, ndim)).astype(np.uint8))

distances = simsimd.cdist(matrix1, matrix2,
    metric="hamming",   # Unlike SciPy, SimSIMD doesn't divide by the number of dimensions
    out_dtype="uint8",  # so we can use `uint8` instead of `float64` to save memory.
    threads=0,          # Use all CPU cores with OpenMP.
    dtype="bin8",       # Override input argument type to `bin8` eight-bit words.
)

Alternatively, when using free-threading Python 3.13t builds, one can combine single-threaded SimSIMD operations with Python's concurrent.futures.ThreadPoolExecutor to parallelize the computations. By default, the output distances will be stored in double-precision float64 floating-point numbers. That behavior may not be space-efficient, especially if you are computing the hamming distance between short binary vectors, that will generally fit into 8x smaller uint8 or uint16 types. To override this behavior, use the out_dtype argument, or consider pre-allocating the output array and passing it to the out argument. A more complete example may look like this:

from multiprocessing import cpu_count
from concurrent.futures import ThreadPoolExecutor
from simsimd import cosine
import numpy as np

# Generate large dataset
vectors_a = np.random.rand(100_000, 1536).astype(np.float32)
vectors_b = np.random.rand(100_000, 1536).astype(np.float32)
distances = np.zeros((100_000,), dtype=np.float32)

def compute_batch(start_idx, end_idx):
    batch_a = vectors_a[start_idx:end_idx]
    batch_b = vectors_b[start_idx:end_idx]
    cosine(batch_a, batch_b, out=distances[start_idx:end_idx])

# Use all CPU cores with true parallelism (no GIL!)
num_threads = cpu_count()
chunk_size = len(vectors_a) // num_threads

with ThreadPoolExecutor(max_workers=num_threads) as executor:
    futures = []
    for i in range(num_threads):
        start_idx = i * chunk_size
        end_idx = (i + 1) * chunk_size if i < num_threads - 1 else len(vectors_a)
        futures.append(executor.submit(compute_batch, start_idx, end_idx))

    # Collect results from all threads
    results = [future.result() for future in futures]

Half-Precision Brain-Float Numbers

The "brain-float-16" is a popular machine learning format. It's broadly supported in hardware and is very machine-friendly, but software support is still lagging behind. Unlike NumPy, you can already use bf16 datatype in SimSIMD. Luckily, to downcast f32 to bf16 you only have to drop the last 16 bits:

import numpy as np
import simsimd as simd

ndim = 1536
a = np.random.randn(ndim).astype(np.float32)
b = np.random.randn(ndim).astype(np.float32)

# NumPy doesn't natively support brain-float, so we need a trick!
# Luckily, it's very easy to reduce the representation accuracy
# by simply masking the low 16-bits of our 32-bit single-precision
# numbers. We can also add `0x8000` to round the numbers.
a_f32rounded = ((a.view(np.uint32) + 0x8000) & 0xFFFF0000).view(np.float32)
b_f32rounded = ((b.view(np.uint32) + 0x8000) & 0xFFFF0000).view(np.float32)

# To represent them as brain-floats, we need to drop the second half
a_bf16 = np.right_shift(a_f32rounded.view(np.uint32), 16).astype(np.uint16)
b_bf16 = np.right_shift(b_f32rounded.view(np.uint32), 16).astype(np.uint16)

# Now we can compare the results
expected = np.inner(a_f32rounded, b_f32rounded)
result = simd.inner(a_bf16, b_bf16, "bf16")

Helper Functions

You can turn specific backends on or off depending on the exact environment. A common case may be avoiding AVX-512 on older AMD CPUs and Intel Ice Lake CPUs to ensure the CPU doesn't change the frequency license and throttle performance.

$ simsimd.get_capabilities()
> {'serial': True, 'neon': False, 'sve': False, 'neon_f16': False, 'sve_f16': False, 'neon_bf16': False, 'sve_bf16': False, 'neon_i8': False, 'sve_i8': False, 'haswell': True, 'skylake': True, 'ice': True, 'genoa': True, 'sapphire': True, 'turin': True}
$ simsimd.disable_capability("sapphire")
$ simsimd.enable_capability("sapphire")

Using Python API with USearch

Want to use it in Python with USearch? You can wrap the raw C function pointers SimSIMD backends into a CompiledMetric and pass it to USearch, similar to how it handles Numba's JIT-compiled code.

from usearch.index import Index, CompiledMetric, MetricKind, MetricSignature
from simsimd import pointer_to_sqeuclidean, pointer_to_cosine, pointer_to_inner

metric = CompiledMetric(
    pointer=pointer_to_cosine("f16"),
    kind=MetricKind.Cos,
    signature=MetricSignature.ArrayArraySize,
)

index = Index(256, metric=metric)

Using SimSIMD in Rust

To install, add the following to your Cargo.toml:

[dependencies]
simsimd = "..."

Before using the SimSIMD library, ensure you have imported the necessary traits and types into your Rust source file. The library provides several traits for different distance/similarity kinds - SpatialSimilarity, BinarySimilarity, and ProbabilitySimilarity.

Spatial Similarity: Cosine and Euclidean Distances

use simsimd::SpatialSimilarity;

fn main() {
    let vector_a: Vec<f32> = vec![1.0, 2.0, 3.0];
    let vector_b: Vec<f32> = vec![4.0, 5.0, 6.0];

    // Compute the cosine distance between vectors
    let cosine_distance = f32::cosine(&vector_a, &vector_b)
        .expect("Vectors must be of the same length");

    println!("Cosine Distance: {}", cosine_distance);

    // Compute the squared Euclidean distance between vectors
    let sq_euclidean_distance = f32::sqeuclidean(&vector_a, &vector_b)
        .expect("Vectors must be of the same length");

    println!("Squared Euclidean Distance: {}", sq_euclidean_distance);
}

Spatial similarity functions are available for f64, f32, f16, and i8 types.

Dot-Products: Inner and Complex Inner Products

use simsimd::SpatialSimilarity;
use simsimd::ComplexProducts;

fn main() {
    // Complex vectors have interleaved real & imaginary components
    let vector_a: Vec<f32> = vec![1.0, 2.0, 3.0, 4.0];
    let vector_b: Vec<f32> = vec![5.0, 6.0, 7.0, 8.0];

    // Compute the inner product between vectors
    let inner_product = SpatialSimilarity::dot(&vector_a, &vector_b)
        .expect("Vectors must be of the same length");

    println!("Inner Product: {}", inner_product);

    // Compute the complex inner product between vectors
    let complex_inner_product = ComplexProducts::dot(&vector_a, &vector_b)
        .expect("Vectors must be of the same length");

    let complex_conjugate_inner_product = ComplexProducts::vdot(&vector_a, &vector_b)
        .expect("Vectors must be of the same length");

    println!("Complex Inner Product: {:?}", complex_inner_product); // -18, 69
    println!("Complex C. Inner Product: {:?}", complex_conjugate_inner_product); // 70, -8
}

Complex inner products are available for f64, f32, and f16 types.

Probability Distributions: Jensen-Shannon and Kullback-Leibler Divergences

use simsimd::ProbabilitySimilarity;

fn main() {
    let vector_a: Vec<f32> = vec![1.0, 2.0, 3.0];
    let vector_b: Vec<f32> = vec![4.0, 5.0, 6.0];

    let jensen_shannon = f32::jensenshannon(&vector_a, &vector_b)
        .expect("Vectors must be of the same length");

    println!("Jensen-Shannon Divergence: {}", jensen_shannon);

    let kullback_leibler = f32::kullbackleibler(&vector_a, &vector_b)
        .expect("Vectors must be of the same length");

    println!("Kullback-Leibler Divergence: {}", kullback_leibler);
}

Probability similarity functions are available for f64, f32, and f16 types.

Binary Similarity: Hamming and Jaccard Distances

Similar to spatial distances, one can compute bit-level distance functions between slices of unsigned integers:

use simsimd::BinarySimilarity;

fn main() {
    let vector_a = &[0b11110000, 0b00001111, 0b10101010];
    let vector_b = &[0b11110000, 0b00001111, 0b01010101];

    // Compute the Hamming distance between vectors
    let hamming_distance = u8::hamming(&vector_a, &vector_b)
        .expect("Vectors must be of the same length");

    println!("Hamming Distance: {}", hamming_distance);

    // Compute the Jaccard distance between vectors
    let jaccard_distance = u8::jaccard(&vector_a, &vector_b)
        .expect("Vectors must be of the same length");

    println!("Jaccard Distance: {}", jaccard_distance);
}

Binary similarity functions are available only for u8 types.

Half-Precision Floating-Point Numbers

Rust has no native support for half-precision floating-point numbers, but SimSIMD provides a f16 type with built-in conversion methods. The underlying u16 representation is publicly accessible for direct bit manipulation.

use simsimd::{SpatialSimilarity, f16};

fn main() {
    // Create f16 vectors using built-in conversion methods
    let vector_a: Vec<f16> = vec![1.0, 2.0, 3.0].iter().map(|&x| f16::from_f32(x)).collect();
    let vector_b: Vec<f16> = vec![4.0, 5.0, 6.0].iter().map(|&x| f16::from_f32(x)).collect();

    // Compute the cosine distance
    let cosine_distance = f16::cosine(&vector_a, &vector_b)
        .expect("Vectors must be of the same length");
    
    println!("Cosine Distance: {}", cosine_distance);

    // Direct bit manipulation
    let half = f16::from_f32(3.14159);
    let bits = half.0; // Access raw u16 representation
    let reconstructed = f16(bits);
    
    // Convert back to f32
    let float_value = half.to_f32();
}

For interoperability with the half crate:

use simsimd::{SpatialSimilarity, f16 as SimF16};
use half::f16 as HalfF16;

fn main() {
    let vector_a: Vec<HalfF16> = vec![1.0, 2.0, 3.0].iter().map(|&x| HalfF16::from_f32(x)).collect();
    let vector_b: Vec<HalfF16> = vec![4.0, 5.0, 6.0].iter().map(|&x| HalfF16::from_f32(x)).collect();

    // Safe reinterpret cast due to identical memory layout
    let buffer_a: &[SimF16] = unsafe { std::slice::from_raw_parts(vector_a.as_ptr() as *const SimF16, vector_a.len()) };
    let buffer_b: &[SimF16] = unsafe { std::slice::from_raw_parts(vector_b.as_ptr() as *const SimF16, vector_b.len()) };

    let cosine_distance = SimF16::cosine(buffer_a, buffer_b)
        .expect("Vectors must be of the same length");

    println!("Cosine Distance: {}", cosine_distance);
}

Half-Precision Brain-Float Numbers

The "brain-float-16" is a popular machine learning format. It's broadly supported in hardware and is very machine-friendly, but software support is still lagging behind. Unlike NumPy, you can already use bf16 datatype in SimSIMD. SimSIMD provides a bf16 type with built-in conversion methods and direct bit access.

use simsimd::{SpatialSimilarity, bf16};

fn main() {
    // Create bf16 vectors using built-in conversion methods
    let vector_a: Vec<bf16> = vec![1.0, 2.0, 3.0].iter().map(|&x| bf16::from_f32(x)).collect();
    let vector_b: Vec<bf16> = vec![4.0, 5.0, 6.0].iter().map(|&x| bf16::from_f32(x)).collect();

    // Compute the cosine similarity
    let cosine_distance = bf16::cosine(&vector_a, &vector_b)
        .expect("Vectors must be of the same length");
    
    println!("Cosine Distance: {}", cosine_distance);

    // Direct bit manipulation
    let brain_half = bf16::from_f32(3.14159);
    let bits = brain_half.0; // Access raw u16 representation
    let reconstructed = bf16(bits);
    
    // Convert back to f32
    let float_value = brain_half.to_f32();

    // Compare precision differences
    let original = 3.14159_f32;
    let f16_roundtrip = f16::from_f32(original).to_f32();
    let bf16_roundtrip = bf16::from_f32(original).to_f32();
    
    println!("Original: {}", original);
    println!("f16 roundtrip: {}", f16_roundtrip);
    println!("bf16 roundtrip: {}", bf16_roundtrip);
}

Dynamic Dispatch in Rust

SimSIMD provides a dynamic dispatch mechanism to select the most advanced micro-kernel for the current CPU. You can query supported backends and use the SimSIMD::capabilities function to select the best one.

println!("uses neon: {}", capabilities::uses_neon());
println!("uses sve: {}", capabilities::uses_sve());
println!("uses haswell: {}", capabilities::uses_haswell());
println!("uses skylake: {}", capabilities::uses_skylake());
println!("uses ice: {}", capabilities::uses_ice());
println!("uses genoa: {}", capabilities::uses_genoa());
println!("uses sapphire: {}", capabilities::uses_sapphire());
println!("uses turin: {}", capabilities::uses_turin());
println!("uses sierra: {}", capabilities::uses_sierra());

Using SimSIMD in JavaScript

To install, choose one of the following options depending on your environment:

  • npm install --save simsimd
  • yarn add simsimd
  • pnpm add simsimd
  • bun install simsimd

The package is distributed with prebuilt binaries, but if your platform is not supported, you can build the package from the source via npm run build. This will automatically happen unless you install the package with the --ignore-scripts flag or use Bun. After you install it, you will be able to call the SimSIMD functions on various TypedArray variants:

const { sqeuclidean, cosine, inner, hamming, jaccard } = require("simsimd");

const vectorA = new Float32Array([1.0, 2.0, 3.0]);
const vectorB = new Float32Array([4.0, 5.0, 6.0]);

const distance = sqeuclidean(vectorA, vectorB);
console.log("Squared Euclidean Distance:", distance);

Other numeric types and precision levels are supported as well. For double-precision floating-point numbers, use Float64Array:

const vectorA = new Float64Array([1.0, 2.0, 3.0]);
const vectorB = new Float64Array([4.0, 5.0, 6.0]);
const distance = cosine(vectorA, vectorB);

When doing machine learning and vector search with high-dimensional vectors you may want to quantize them to 8-bit integers. You may want to project values from the $[-1, 1]$ range to the $[-127, 127]$ range and then cast them to Int8Array:

const quantizedVectorA = new Int8Array(vectorA.map((v) => v * 127));
const quantizedVectorB = new Int8Array(vectorB.map((v) => v * 127));
const distance = cosine(quantizedVectorA, quantizedVectorB);

A more extreme quantization case would be to use binary vectors. You can map all positive values to 1 and all negative values and zero to 0, packing eight values into a single byte. After that, Hamming and Jaccard distances can be computed.

const { toBinary, hamming } = require("simsimd");

const binaryVectorA = toBinary(vectorA);
const binaryVectorB = toBinary(vectorB);
const distance = hamming(binaryVectorA, binaryVectorB);

Using SimSIMD in Swift

To install, simply add the following dependency to your Package.swift:

dependencies: [
    .package(url: "https://github.com/ashvardanian/simsimd")
]

The package provides the most common spatial metrics for Int8, Float16, Float32, and Float64 vectors.

import SimSIMD

let vectorA: [Int8] = [1, 2, 3]
let vectorB: [Int8] = [4, 5, 6]

let dotProduct = vectorA.dot(vectorB)           // Computes the dot product
let cosineDistance = vectorA.cosine(vectorB)    // Computes the cosine distance
let sqEuclidean = vectorA.sqeuclidean(vectorB)  // Computes the squared Euclidean distance

Using SimSIMD in C

For integration within a CMake-based project, add the following segment to your CMakeLists.txt:

FetchContent_Declare(
    simsimd
    GIT_REPOSITORY https://github.com/ashvardanian/simsimd.git
    GIT_SHALLOW TRUE
)
FetchContent_MakeAvailable(simsimd)

After that, you can use the SimSIMD library in your C code in several ways. Simplest of all, you can include the headers, and the compiler will automatically select the most recent CPU extensions that SimSIMD will use.

#include <simsimd/simsimd.h>

int main() {
    simsimd_flush_denormals(); // Optional, to avoid performance penalties on denormal numbers

    simsimd_f32_t vector_a[1536];
    simsimd_f32_t vector_b[1536];
    simsimd_kernel_punned_t metric_punned = simsimd_metric_punned(
        simsimd_metric_cos_k,   // Metric kind, like the angular cosine distance
        simsimd_datatype_f32_k, // Data type, like: f16, f32, f64, i8, b8, and complex variants
        simsimd_cap_any_k);     // Which CPU capabilities are we allowed to use
    simsimd_distance_t distance;
    simsimd_metric_dense_punned_t metric = (simsimd_metric_dense_punned_t)metric_punned;
    metric(vector_a, vector_b, 1536, &distance);
    return 0;
}

Dynamic Dispatch in C

To avoid hard-coding the backend, you can rely on c/lib.c to prepackage all possible backends in one binary, and select the most recent CPU features at runtime. That feature of the C library is called dynamic dispatch and is extensively used in the Python, JavaScript, and Rust bindings. To test which CPU features are available on the machine at runtime, use the following APIs:

int uses_dynamic_dispatch = simsimd_uses_dynamic_dispatch(); // Check if dynamic dispatch was enabled
simsimd_capability_t capabilities = simsimd_capabilities();  // Returns a bitmask

int uses_neon = simsimd_uses_neon();
int uses_sve = simsimd_uses_sve();
int uses_haswell = simsimd_uses_haswell();
int uses_skylake = simsimd_uses_skylake();
int uses_ice = simsimd_uses_ice();
int uses_genoa = simsimd_uses_genoa();
int uses_sapphire = simsimd_uses_sapphire();

To override compilation settings and switch between runtime and compile-time dispatch, define the following macro:

#define SIMSIMD_DYNAMIC_DISPATCH 1 // or 0

Spatial Distances: Cosine and Euclidean Distances

#include <simsimd/simsimd.h>

int main() {
    simsimd_i8_t i8s[1536];
    simsimd_u8_t u8s[1536];
    simsimd_f64_t f64s[1536];
    simsimd_f32_t f32s[1536];
    simsimd_f16_t f16s[1536];
    simsimd_bf16_t bf16s[1536];
    simsimd_distance_t distance;

    // Cosine distance between two vectors
    simsimd_cos_i8(i8s, i8s, 1536, &distance);
    simsimd_cos_u8(u8s, u8s, 1536, &distance);
    simsimd_cos_f16(f16s, f16s, 1536, &distance);
    simsimd_cos_f32(f32s, f32s, 1536, &distance);
    simsimd_cos_f64(f64s, f64s, 1536, &distance);
    simsimd_cos_bf16(bf16s, bf16s, 1536, &distance);

    // Euclidean distance between two vectors
    simsimd_l2sq_i8(i8s, i8s, 1536, &distance);
    simsimd_l2sq_u8(u8s, u8s, 1536, &distance);
    simsimd_l2sq_f16(f16s, f16s, 1536, &distance);
    simsimd_l2sq_f32(f32s, f32s, 1536, &distance);
    simsimd_l2sq_f64(f64s, f64s, 1536, &distance);
    simsimd_l2sq_bf16(bf16s, bf16s, 1536, &distance);

    return 0;
}

Dot-Products: Inner and Complex Inner Products

#include <simsimd/simsimd.h>

int main() {
    // SimSIMD provides "sized" type-aliases without relying on `stdint.h`
    simsimd_i8_t i8[1536];
    simsimd_i8_t u8[1536];
    simsimd_f16_t f16s[1536];
    simsimd_f32_t f32s[1536];
    simsimd_f64_t f64s[1536];
    simsimd_bf16_t bf16s[1536];
    simsimd_distance_t product;

    // Inner product between two real vectors
    simsimd_dot_i8(i8s, i8s, 1536, &product);
    simsimd_dot_u8(u8s, u8s, 1536, &product);
    simsimd_dot_f16(f16s, f16s, 1536, &product);
    simsimd_dot_f32(f32s, f32s, 1536, &product);
    simsimd_dot_f64(f64s, f64s, 1536, &product);
    simsimd_dot_bf16(bf16s, bf16s, 1536, &product);

    // SimSIMD provides complex types with `real` and `imag` fields
    simsimd_f64c_t f64cs[768];
    simsimd_f32c_t f32cs[768];
    simsimd_f16c_t f16cs[768];
    simsimd_bf16c_t bf16cs[768];
    simsimd_distance_t products[2]; // real and imaginary parts

    // Complex inner product between two vectors
    simsimd_dot_f16c(f16cs, f16cs, 768, &products[0]);
    simsimd_dot_f32c(f32cs, f32cs, 768, &products[0]);
    simsimd_dot_f64c(f64cs, f64cs, 768, &products[0]);
    simsimd_dot_bf16c(bf16cs, bf16cs, 768, &products[0]);

    // Complex conjugate inner product between two vectors
    simsimd_vdot_f16c(f16cs, f16cs, 768, &products[0]);
    simsimd_vdot_f32c(f32cs, f32cs, 768, &products[0]);
    simsimd_vdot_f64c(f64cs, f64cs, 768, &products[0]);
    simsimd_vdot_bf16c(bf16cs, bf16cs, 768, &products[0]);
    return 0;
}

Binary Distances: Hamming and Jaccard Distances

#include <simsimd/simsimd.h>

int main() {
    simsimd_b8_t b8s[1536 / 8]; // 8 bits per word
    simsimd_distance_t distance;
    simsimd_hamming_b8(b8s, b8s, 1536 / 8, &distance);
    simsimd_jaccard_b8(b8s, b8s, 1536 / 8, &distance);
    return 0;
}

Probability Distributions: Jensen-Shannon and Kullback-Leibler Divergences

#include <simsimd/simsimd.h>

int main() {
    simsimd_f64_t f64s[1536];
    simsimd_f32_t f32s[1536];
    simsimd_f16_t f16s[1536];
    simsimd_distance_t divergence;

    // Jensen-Shannon divergence between two vectors
    simsimd_js_f16(f16s, f16s, 1536, &divergence);
    simsimd_js_f32(f32s, f32s, 1536, &divergence);
    simsimd_js_f64(f64s, f64s, 1536, &divergence);

    // Kullback-Leibler divergence between two vectors
    simsimd_kl_f16(f16s, f16s, 1536, &divergence);
    simsimd_kl_f32(f32s, f32s, 1536, &divergence);
    simsimd_kl_f64(f64s, f64s, 1536, &divergence);
    return 0;
}

Half-Precision Floating-Point Numbers

If you aim to utilize the _Float16 functionality with SimSIMD, ensure your development environment is compatible with C 11. For other SimSIMD functionalities, C 99 compatibility will suffice. To explicitly disable half-precision support, define the following macro before imports:

#define SIMSIMD_NATIVE_F16 0 // or 1
#define SIMSIMD_NATIVE_BF16 0 // or 1
#include <simsimd/simsimd.h>

Compilation Settings and Debugging

SIMSIMD_DYNAMIC_DISPATCH:

By default, SimSIMD is a header-only library. But if you are running on different generations of devices, it makes sense to pre-compile the library for all supported generations at once, and dispatch at runtime. This flag does just that and is used to produce the simsimd.so shared library, as well as the Python and other bindings.

For Arm: SIMSIMD_TARGET_NEON, SIMSIMD_TARGET_SVE, SIMSIMD_TARGET_SVE2, SIMSIMD_TARGET_NEON_F16, SIMSIMD_TARGET_SVE_F16, SIMSIMD_TARGET_NEON_BF16, SIMSIMD_TARGET_SVE_BF16. For x86: SIMSIMD_TARGET_HASWELL, SIMSIMD_TARGET_SKYLAKE, SIMSIMD_TARGET_ICE, SIMSIMD_TARGET_GENOA, SIMSIMD_TARGET_SAPPHIRE, SIMSIMD_TARGET_TURIN, SIMSIMD_TARGET_SIERRA.

By default, SimSIMD automatically infers the target architecture and pre-compiles as many kernels as possible. In some cases, you may want to explicitly disable some of the kernels. Most often it's due to compiler support issues, like the lack of some recent intrinsics or low-precision numeric types. In other cases, you may want to disable some kernels to speed up the compilation process and trim the binary size.

SIMSIMD_SQRT, SIMSIMD_RSQRT, SIMSIMD_LOG:

By default, for non-SIMD backends, SimSIMD may use libc functions like sqrt and log. Those are generally very accurate, but slow, and introduce a dependency on the C standard library. To avoid that you can override those definitions with your custom implementations, like: #define SIMSIMD_RSQRT(x) (1 / sqrt(x)).

Algorithms & Design Decisions 📚

In general there are a few principles that SimSIMD follows:

  • Avoid loop unrolling.
  • Never allocate memory.
  • Never throw exceptions or set errno.
  • Keep all function arguments the size of the pointer.
  • Avoid returning from public interfaces, use out-arguments instead.
  • Don't over-optimize for old CPUs and single- and double-precision floating-point numbers.
  • Prioritize mixed-precision and integer operations, and new ISA extensions.
  • Prefer saturated arithmetic and avoid overflows.

Possibly, in the future:

  • Best effort computation silencing NaN components in low-precision inputs.
  • Detect overflows and report the distance with a "signaling" NaN.

Last, but not the least - don't build unless there is a demand for it. So if you have a specific use-case, please open an issue or a pull request, and ideally, bring in more users with similar needs.

Cosine Similarity, Reciprocal Square Root, and Newton-Raphson Iteration

The cosine similarity is the most common and straightforward metric used in machine learning and information retrieval. Interestingly, there are multiple ways to shoot yourself in the foot when computing it. The cosine similarity is the inverse of the cosine distance, which is the cosine of the angle between two vectors.

\text{CosineSimilarity}(a, b) = \frac{a \cdot b}{\|a\| \cdot \|b\|}
\text{CosineDistance}(a, b) = 1 - \frac{a \cdot b}{\|a\| \cdot \|b\|}

In NumPy terms, SimSIMD implementation is similar to:

import numpy as np

def cos_numpy(a: np.ndarray, b: np.ndarray) -> float:
    ab, a2, b2 = np.dot(a, b), np.dot(a, a), np.dot(b, b) # Fused in SimSIMD
    if a2 == 0 and b2 == 0: result = 0                    # Same in SciPy
    elif ab == 0: result = 1                              # Division by zero error in SciPy
    else: result = 1 - ab / (sqrt(a2) * sqrt(b2))         # Bigger rounding error in SciPy
    return result

In SciPy, however, the cosine distance is computed as 1 - ab / np.sqrt(a2 * b2). It handles the edge case of a zero and non-zero argument pair differently, resulting in a division by zero error. It's not only less efficient, but also less accurate, given how the reciprocal square roots are computed. The C standard library provides the sqrt function, which is generally very accurate, but slow. The rsqrt in-hardware implementations are faster, but have different accuracy characteristics.

  • SSE rsqrtps and AVX vrsqrtps: $1.5 \times 2^{-12}$ maximal relative error.
  • AVX-512 vrsqrt14pd instruction: $2^{-14}$ maximal relative error.
  • NEON frsqrte instruction has no documented error bounds, but can be $2^{-3}$.

To overcome the limitations of the rsqrt instruction, SimSIMD uses the Newton-Raphson iteration to refine the initial estimate for high-precision floating-point numbers. It can be defined as:

x_{n+1} = x_n \cdot (3 - x_n \cdot x_n) / 2

On 1536-dimensional inputs on Intel Sapphire Rapids CPU a single such iteration can result in a 2-3 orders of magnitude relative error reduction:

Datatype NumPy Error SimSIMD w/out Iteration SimSIMD
bfloat16 1.89e-08 ± 1.59e-08 3.07e-07 ± 3.09e-07 3.53e-09 ± 2.70e-09
float16 1.67e-02 ± 1.44e-02 2.68e-05 ± 1.95e-05 2.02e-05 ± 1.39e-05
float32 2.21e-08 ± 1.65e-08 3.47e-07 ± 3.49e-07 3.77e-09 ± 2.84e-09
float64 0.00e+00 ± 0.00e+00 3.80e-07 ± 4.50e-07 1.35e-11 ± 1.85e-11

Curved Spaces, Mahalanobis Distance, and Bilinear Quadratic Forms

The Mahalanobis distance is a generalization of the Euclidean distance, which takes into account the covariance of the data. It's very similar in its form to the bilinear form, which is a generalization of the dot product.

\text{BilinearForm}(a, b, M) = a^T M b
\text{Mahalanobis}(a, b, M) = \sqrt{(a - b)^T M^{-1} (a - b)}

Bilinear Forms can be seen as one of the most important linear algebraic operations, surprisingly missing in BLAS and LAPACK. They are versatile and appear in various domains:

  • In Quantum Mechanics, the expectation value of an observable $A$ in a state $\psi$ is given by $\langle \psi | A | \psi \rangle$, which is a bilinear form.
  • In Machine Learning, in Support Vector Machines (SVMs), bilinear forms define kernel functions that measure similarity between data points.
  • In Differential Geometry, the metric tensor, which defines distances and angles on a manifold, is a bilinear form on the tangent space.
  • In Economics, payoff functions in certain Game Theoretic problems can be modeled as bilinear forms of players' strategies.
  • In Physics, interactions between electric and magnetic fields can be expressed using bilinear forms.

Broad applications aside, the lack of a specialized primitive for bilinear forms in BLAS and LAPACK means significant performance overhead. A $vector * matrix * vector$ product is a scalar, whereas its constituent parts ($vector * matrix$ and $matrix * vector$) are vectors:

  • They need memory to be stored in: $O(n)$ allocation.
  • The data will be written to memory and read back, wasting CPU cycles.

SimSIMD doesn't produce intermediate vector results, like a @ M @ b, but computes the bilinear form directly.

Set Intersection, Galloping, and Binary Search

The set intersection operation is generally defined as the number of elements that are common between two sets, represented as sorted arrays of integers. The most common way to compute it is a linear scan:

size_t intersection_size(int *a, int *b, size_t n, size_t m) {
    size_t i = 0, j = 0, count = 0;
    while (i < n && j < m) {
        if (a[i] < b[j]) i++;
        else if (a[i] > b[j]) j++;
        else i++, j++, count++;
    }
    return count;
}

Alternatively, one can use the binary search to find the elements in the second array that are present in the first one. On every step the checked region of the second array is halved, which is called the galloping search. It's faster, but only when large arrays of very different sizes are intersected. Third approach is to use the SIMD instructions to compare multiple elements at once:

  • Using string-intersection instructions on x86, like pcmpestrm.
  • Using integer-intersection instructions in AVX-512, like vp2intersectd.
  • Using vanilla equality checks present in all SIMD instruction sets.

After benchmarking, the last approach was chosen, as it's the most flexible and often the fastest.

Complex Dot Products, Conjugate Dot Products, and Complex Numbers

Complex dot products are a generalization of the dot product to complex numbers. They are supported by most BLAS packages, but almost never in mixed precision. SimSIMD defines dot and vdot kernels as:

\text{dot}(a, b) = \sum_{i=0}^{n-1} a_i \cdot b_i
\text{vdot}(a, b) = \sum_{i=0}^{n-1} a_i \cdot \bar{b_i}

Where $\bar{b_i}$ is the complex conjugate of $b_i$. Putting that into Python code for scalar arrays:

def dot(a: List[number], b: List[number]) -> number:
    a_real, a_imaginary = a[0::2], a[1::2]
    b_real, b_imaginary = b[0::2], b[1::2]
    ab_real, ab_imaginary = 0, 0
    for ar, ai, br, bi in zip(a_real, a_imaginary, b_real, b_imaginary):
        ab_real += ar * br - ai * bi
        ab_imaginary += ar * bi + ai * br
    return ab_real, ab_imaginary

def vdot(a: List[number], b: List[number]) -> number:
    a_real, a_imaginary = a[0::2], a[1::2]
    b_real, b_imaginary = b[0::2], b[1::2]
    ab_real, ab_imaginary = 0, 0
    for ar, ai, br, bi in zip(a_real, a_imaginary, b_real, b_imaginary):
        ab_real += ar * br + ai * bi
        ab_imaginary += ar * bi - ai * br
    return ab_real, ab_imaginary

Logarithms in Kullback-Leibler & Jensen–Shannon Divergences

The Kullback-Leibler divergence is a measure of how one probability distribution diverges from a second, expected probability distribution. Jensen-Shannon divergence is a symmetrized and smoothed version of the Kullback-Leibler divergence, which can be used as a distance metric between probability distributions.

\text{KL}(P || Q) = \sum_{i} P(i) \log \frac{P(i)}{Q(i)}
\text{JS}(P, Q) = \frac{1}{2} \text{KL}(P || M) + \frac{1}{2} \text{KL}(Q || M), M = \frac{P + Q}{2}

Both functions are defined for non-negative numbers, and the logarithm is a key part of their computation.

Mixed Precision in Fused-Multiply-Add and Weighted Sums

The Fused-Multiply-Add (FMA) operation is a single operation that combines element-wise multiplication and addition with different scaling factors. The Weighted Sum is its simplified variant without element-wise multiplication.

\text{FMA}_i(A, B, C, \alpha, \beta) = \alpha \cdot A_i \cdot B_i + \beta \cdot C_i
\text{WSum}_i(A, B, \alpha, \beta) = \alpha \cdot A_i + \beta \cdot B_i

In NumPy terms, the implementation may look like:

import numpy as np
def wsum(A: np.ndarray, B: np.ndarray, /, Alpha: float, Beta: float) -> np.ndarray:
    assert A.dtype == B.dtype, "Input types must match and affect the output style"
    return (Alpha * A + Beta * B).astype(A.dtype)
def fma(A: np.ndarray, B: np.ndarray, C: np.ndarray, /, Alpha: float, Beta: float) -> np.ndarray:
    assert A.dtype == B.dtype and A.dtype == C.dtype, "Input types must match and affect the output style"
    return (Alpha * A * B + Beta * C).astype(A.dtype)

The tricky part is implementing those operations in mixed precision, where the scaling factors are of different precision than the input and output vectors. SimSIMD uses double-precision floating-point scaling factors for any input and output precision, including i8 and u8 integers and f16 and bf16 floats. Depending on the generation of the CPU, given native support for f16 addition and multiplication, the f16 temporaries are used for i8 and u8 multiplication, scaling, and addition. For bf16, native support is generally limited to dot-products with subsequent partial accumulation, which is not enough for the FMA and WSum operations, so f32 is used as a temporary.

Auto-Vectorization & Loop Unrolling

On the Intel Sapphire Rapids platform, SimSIMD was benchmarked against auto-vectorized code using GCC 12. GCC handles single-precision float but might not be the best choice for int8 and _Float16 arrays, which have been part of the C language since 2011.

Kind GCC 12 f32 GCC 12 f16 SimSIMD f16 f16 improvement
Inner Product 3,810 K/s 192 K/s 5,990 K/s 31 x
Cosine Distance 3,280 K/s 336 K/s 6,880 K/s 20 x
Euclidean Distance ² 4,620 K/s 147 K/s 5,320 K/s 36 x
Jensen-Shannon Divergence 1,180 K/s 18 K/s 2,140 K/s 118 x

Dynamic Dispatch

Most popular software is precompiled and distributed with fairly conservative CPU optimizations, to ensure compatibility with older hardware. Database Management platforms, like ClickHouse, and Web Browsers, like Google Chrome,need to run on billions of devices, and they can't afford to be picky about the CPU features. For such users SimSIMD provides a dynamic dispatch mechanism, which selects the most advanced micro-kernel for the current CPU at runtime.

Subset F CD ER PF 4FMAPS 4VNNIW VPOPCNTDQ VL DQ BW IFMA VBMI VNNI BF16 VBMI2 BITALG VPCLMULQDQ GFNI VAES VP2INTERSECT FP16
Knights Landing (Xeon Phi x200, 2016) Yes Yes No
Knights Mill (Xeon Phi x205, 2017) Yes No
Skylake-SP, Skylake-X (2017) No No Yes No
Cannon Lake (2018) Yes No
Cascade Lake (2019) No Yes No
Cooper Lake (2020) Yes No
Ice Lake (2019) Yes No Yes No
Tiger Lake (2020) Yes No
Rocket Lake (2021) No
Alder Lake (2021) Partial Partial
Zen 4 (2022) Yes Yes No
Sapphire Rapids (2023) No Yes
Zen 5 (2024) Yes No

You can compile SimSIMD on an old CPU, like Intel Haswell, and run it on a new one, like AMD Genoa, and it will automatically use the most advanced instructions available. Reverse is also true, you can compile on a new CPU and run on an old one, and it will automatically fall back to the most basic instructions. Moreover, the very first time you prove for CPU capabilities with simsimd_capabilities(), it initializes the dynamic dispatch mechanism, and all subsequent calls will be faster and won't face race conditions in multi-threaded environments.

Target Specific Backends

SimSIMD exposes all kernels for all backends, and you can select the most advanced one for the current CPU without relying on built-in dispatch mechanisms. That's handy for testing and benchmarking, but also in case you want to dispatch a very specific kernel for a very specific CPU, bypassing SimSIMD assignment logic. All of the function names follow the same pattern: simsimd_{function}_{type}_{backend}.

  • The backend can be serial, haswell, skylake, ice, genoa, sapphire, turin, neon, or sve.
  • The type can be f64, f32, f16, bf16, f64c, f32c, f16c, bf16c, i8, or b8.
  • The function can be dot, vdot, cos, l2sq, hamming, jaccard, kl, js, or intersect.

To avoid hard-coding the backend, you can use the simsimd_kernel_punned_t to pun the function pointer and the simsimd_capabilities function to get the available backends at runtime. To match all the function names, consider a RegEx:

SIMSIMD_PUBLIC void simsimd_\w+_\w+_\w+\(

On Linux, you can use the following command to list all unique functions:

$ grep -oP 'SIMSIMD_PUBLIC void simsimd_\w+_\w+_\w+\(' include/simsimd/*.h | sort | uniq
> include/simsimd/binary.h:SIMSIMD_PUBLIC void simsimd_hamming_b8_haswell(
> include/simsimd/binary.h:SIMSIMD_PUBLIC void simsimd_hamming_b8_ice(
> include/simsimd/binary.h:SIMSIMD_PUBLIC void simsimd_hamming_b8_neon(
> include/simsimd/binary.h:SIMSIMD_PUBLIC void simsimd_hamming_b8_serial(
> include/simsimd/binary.h:SIMSIMD_PUBLIC void simsimd_hamming_b8_sve(
> include/simsimd/binary.h:SIMSIMD_PUBLIC void simsimd_jaccard_b8_haswell(
> include/simsimd/binary.h:SIMSIMD_PUBLIC void simsimd_jaccard_b8_ice(
> include/simsimd/binary.h:SIMSIMD_PUBLIC void simsimd_jaccard_b8_neon(
> include/simsimd/binary.h:SIMSIMD_PUBLIC void simsimd_jaccard_b8_serial(
> include/simsimd/binary.h:SIMSIMD_PUBLIC void simsimd_jaccard_b8_sve(

License

Feel free to use the project under Apache 2.0 or the Three-clause BSD license at your preference.

Release history Release notifications | RSS feed

Download files

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

Source Distribution

simsimd-6.5.16.tar.gz (187.2 kB view details)

Uploaded Source

Built Distributions

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

simsimd-6.5.16-cp314-cp314t-win_arm64.whl (65.1 kB view details)

Uploaded CPython 3.14tWindows ARM64

simsimd-6.5.16-cp314-cp314t-win_amd64.whl (90.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

simsimd-6.5.16-cp314-cp314t-musllinux_1_2_x86_64.whl (620.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

simsimd-6.5.16-cp314-cp314t-musllinux_1_2_aarch64.whl (423.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

simsimd-6.5.16-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (585.3 kB view details)

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

simsimd-6.5.16-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (387.2 kB view details)

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

simsimd-6.5.16-cp314-cp314t-macosx_11_0_arm64.whl (94.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

simsimd-6.5.16-cp314-cp314t-macosx_10_15_x86_64.whl (105.4 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

simsimd-6.5.16-cp314-cp314-win_arm64.whl (64.9 kB view details)

Uploaded CPython 3.14Windows ARM64

simsimd-6.5.16-cp314-cp314-win_amd64.whl (90.1 kB view details)

Uploaded CPython 3.14Windows x86-64

simsimd-6.5.16-cp314-cp314-musllinux_1_2_x86_64.whl (619.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

simsimd-6.5.16-cp314-cp314-musllinux_1_2_aarch64.whl (421.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

simsimd-6.5.16-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (583.8 kB view details)

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

simsimd-6.5.16-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (385.3 kB view details)

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

simsimd-6.5.16-cp314-cp314-macosx_11_0_arm64.whl (94.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

simsimd-6.5.16-cp314-cp314-macosx_10_15_x86_64.whl (105.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

simsimd-6.5.16-cp313-cp313t-win_arm64.whl (63.1 kB view details)

Uploaded CPython 3.13tWindows ARM64

simsimd-6.5.16-cp313-cp313t-win_amd64.whl (87.6 kB view details)

Uploaded CPython 3.13tWindows x86-64

simsimd-6.5.16-cp313-cp313t-musllinux_1_2_x86_64.whl (620.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

simsimd-6.5.16-cp313-cp313t-musllinux_1_2_s390x.whl (317.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ s390x

simsimd-6.5.16-cp313-cp313t-musllinux_1_2_ppc64le.whl (340.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ppc64le

simsimd-6.5.16-cp313-cp313t-musllinux_1_2_i686.whl (320.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

simsimd-6.5.16-cp313-cp313t-musllinux_1_2_aarch64.whl (423.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

simsimd-6.5.16-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (585.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

simsimd-6.5.16-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (286.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

simsimd-6.5.16-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (297.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

simsimd-6.5.16-cp313-cp313t-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl (275.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ i686manylinux: glibc 2.28+ i686

simsimd-6.5.16-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (387.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

simsimd-6.5.16-cp313-cp313t-macosx_11_0_arm64.whl (94.8 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

simsimd-6.5.16-cp313-cp313t-macosx_10_13_x86_64.whl (105.3 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

simsimd-6.5.16-cp313-cp313-win_arm64.whl (62.9 kB view details)

Uploaded CPython 3.13Windows ARM64

simsimd-6.5.16-cp313-cp313-win_amd64.whl (87.5 kB view details)

Uploaded CPython 3.13Windows x86-64

simsimd-6.5.16-cp313-cp313-musllinux_1_2_x86_64.whl (619.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

simsimd-6.5.16-cp313-cp313-musllinux_1_2_aarch64.whl (421.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

simsimd-6.5.16-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (583.6 kB view details)

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

simsimd-6.5.16-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (385.1 kB view details)

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

simsimd-6.5.16-cp313-cp313-macosx_11_0_arm64.whl (94.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

simsimd-6.5.16-cp313-cp313-macosx_10_13_x86_64.whl (105.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

simsimd-6.5.16-cp312-cp312-win_arm64.whl (62.9 kB view details)

Uploaded CPython 3.12Windows ARM64

simsimd-6.5.16-cp312-cp312-win_amd64.whl (87.5 kB view details)

Uploaded CPython 3.12Windows x86-64

simsimd-6.5.16-cp312-cp312-musllinux_1_2_x86_64.whl (619.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

simsimd-6.5.16-cp312-cp312-musllinux_1_2_aarch64.whl (421.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

simsimd-6.5.16-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (583.5 kB view details)

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

simsimd-6.5.16-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (385.0 kB view details)

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

simsimd-6.5.16-cp312-cp312-macosx_11_0_arm64.whl (94.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

simsimd-6.5.16-cp312-cp312-macosx_10_13_x86_64.whl (105.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

simsimd-6.5.16-cp311-cp311-win_arm64.whl (62.8 kB view details)

Uploaded CPython 3.11Windows ARM64

simsimd-6.5.16-cp311-cp311-win_amd64.whl (87.2 kB view details)

Uploaded CPython 3.11Windows x86-64

simsimd-6.5.16-cp311-cp311-musllinux_1_2_x86_64.whl (619.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

simsimd-6.5.16-cp311-cp311-musllinux_1_2_aarch64.whl (421.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

simsimd-6.5.16-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (583.8 kB view details)

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

simsimd-6.5.16-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (385.5 kB view details)

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

simsimd-6.5.16-cp311-cp311-macosx_11_0_arm64.whl (94.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

simsimd-6.5.16-cp311-cp311-macosx_10_9_x86_64.whl (106.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

simsimd-6.5.16-cp310-cp310-win_arm64.whl (62.8 kB view details)

Uploaded CPython 3.10Windows ARM64

simsimd-6.5.16-cp310-cp310-win_amd64.whl (87.2 kB view details)

Uploaded CPython 3.10Windows x86-64

simsimd-6.5.16-cp310-cp310-musllinux_1_2_x86_64.whl (619.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

simsimd-6.5.16-cp310-cp310-musllinux_1_2_aarch64.whl (420.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

simsimd-6.5.16-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (582.8 kB view details)

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

simsimd-6.5.16-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (384.6 kB view details)

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

simsimd-6.5.16-cp310-cp310-macosx_11_0_arm64.whl (94.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

simsimd-6.5.16-cp310-cp310-macosx_10_9_x86_64.whl (106.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

simsimd-6.5.16-cp39-cp39-win_arm64.whl (62.8 kB view details)

Uploaded CPython 3.9Windows ARM64

simsimd-6.5.16-cp39-cp39-win_amd64.whl (87.2 kB view details)

Uploaded CPython 3.9Windows x86-64

simsimd-6.5.16-cp39-cp39-musllinux_1_2_x86_64.whl (618.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

simsimd-6.5.16-cp39-cp39-musllinux_1_2_aarch64.whl (420.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

simsimd-6.5.16-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (582.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

simsimd-6.5.16-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (384.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

simsimd-6.5.16-cp39-cp39-macosx_11_0_arm64.whl (94.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

simsimd-6.5.16-cp39-cp39-macosx_10_9_x86_64.whl (106.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

simsimd-6.5.16-cp38-cp38-win_amd64.whl (87.1 kB view details)

Uploaded CPython 3.8Windows x86-64

simsimd-6.5.16-cp38-cp38-musllinux_1_2_x86_64.whl (618.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

simsimd-6.5.16-cp38-cp38-musllinux_1_2_aarch64.whl (420.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

simsimd-6.5.16-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (583.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

simsimd-6.5.16-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (384.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

simsimd-6.5.16-cp38-cp38-macosx_11_0_arm64.whl (94.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

simsimd-6.5.16-cp38-cp38-macosx_10_9_x86_64.whl (106.1 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file simsimd-6.5.16.tar.gz.

File metadata

  • Download URL: simsimd-6.5.16.tar.gz
  • Upload date:
  • Size: 187.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for simsimd-6.5.16.tar.gz
Algorithm Hash digest
SHA256 0a005c6e2dacec83f235a747f7dbecca46b5d4d1e183ecc1929ca556ee7d7564
MD5 aeecd12cff3369d66927111ec3daf1e3
BLAKE2b-256 998c070a179eb509b689509dacbd0bc81aa2e36614aff2c8aa6dc6c440886206

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16.tar.gz:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: simsimd-6.5.16-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 65.1 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for simsimd-6.5.16-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 d63af5fbd32b0346ef949794451b6c1ec58a66139d3ca22177f93cf7c4be7877
MD5 4dad77ef83cf8c25a8fa23745a694148
BLAKE2b-256 073a2d0a48ef00dd495b5ded82a476ec4300ae3f67496cbd7c7fe2777de89a3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp314-cp314t-win_arm64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: simsimd-6.5.16-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 90.3 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for simsimd-6.5.16-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 4aedebecab2c776177c2db2cdd2f311892d9b1b71bcf66d889539ab1e22ad9a6
MD5 fa32e46969e3b7f131a8b5261b85e3d6
BLAKE2b-256 bfaab059b409ae311d4d5e936c07c506c62d5f547597933822fe8c54d32e276b

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp314-cp314t-win_amd64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5c51b74b8f9b096ddd98beea66e18751ad079c398600d8c877a5d228a1f23d20
MD5 c27672385f9b2e37d40f5d0484cfd718
BLAKE2b-256 4d03ad761cc350e0f30cd52f798e39434ce68bd09a741e931f4458ddafd0d099

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b331c7c2222bc03139e0821c076103ea50f9fab5750571b4cd1e53c2ba3cb0d6
MD5 9c070f3c09d91a67dbeee9ae6786eae4
BLAKE2b-256 9d0b92c7dc6b6478032cde9d65f997e8135f5e178c455b8585877b3a9f996bf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 03ed0eec1d7d5124bc86256a8d7ac81b1c6363149e1f1cc957007418da04e8ed
MD5 175bdcbfde8a6dd93fcc1a1741d9690b
BLAKE2b-256 475b46b52cd8df732e73799adb91af16e2bc872e597349b01f456df3008d4dd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9c4e0e257e191c2e1ac94737901ec3771b076f7b9c032b620c0bfb747ecefcd9
MD5 85c350db4bd4632f7fedf50cee195091
BLAKE2b-256 746fb3811e96e6582e4f04793b688eb1f85e2a74722f00089dc5c7932023d523

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 492b86704d942fa3ec627523ba7f40e87203e4222d498aa6fc880a865e13fa76
MD5 ae51ddc13e4042e5f8a93180d44139c8
BLAKE2b-256 453fe0b8064146919d40436503032f331fc92fbd3d8e5b29ca01c40a675432cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 864a0497c8d4bdc6948bedb016836ba777d14a93300c3735c6e84444241cd66e
MD5 58056ced0e02d2834d75e91fa918f951
BLAKE2b-256 6249df617f9e5605b48b75d921b5361c88475879b95a43dd3f2b77fb4659382a

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: simsimd-6.5.16-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 64.9 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for simsimd-6.5.16-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 2e3981bfa3f09fa9fac845037df7c3a684e0538ff297d3b2ccd26a2eed243f80
MD5 7ffc7a1a401a6041c7afb6d0fed03afe
BLAKE2b-256 666738ab856761cc62fbb92b328350a6652f87b27ab2ca1d49fa934aaeca0d3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp314-cp314-win_arm64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: simsimd-6.5.16-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 90.1 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for simsimd-6.5.16-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 96fdb750432ad6478177fb80612b3aea2da002dff613f1fddd19334da9b7f25e
MD5 0d1b8613db5947cdc9115f594d17dbf4
BLAKE2b-256 044c207158749eb6ad8576a1b3cd4e80b7f1e2a0fc59fb2b0730f8df43b3d4a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp314-cp314-win_amd64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fc6b72bf5a62afa66a9b51f6a01d751d8f217c9f7d4b1ea094e495c3dce87c33
MD5 b6a464f345a38e03ed7fb8832fc1b38d
BLAKE2b-256 595993bbf9c1a6b554b4cf21b32f436fc0de082fe929c4c459d295292ee8bcce

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9afa80898b89cdb65317ca6f36efedb3320a000205a82b70dd2ea82872482d08
MD5 6a47d41f705ac31a0a44c79565b1b574
BLAKE2b-256 034e803bffa17b5d52bd545b906f28d947630f271d6a4dc53324d5177464babe

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0029256c39bafc3930884b47280628ff84a8eda3b7b55e64465f0e051df93cb8
MD5 3f3fdd24d8b30dd79d7f906cc23819c8
BLAKE2b-256 79480fd0017b306422d950758e8077e00295d5d9dc2add4680c0aad437774128

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7ecf8eb87e39a72e23126bf7ffa1a454830ec2daddd00ac89cef96aefce788a7
MD5 433e58e85035bae9287ff5815bdd6c44
BLAKE2b-256 02758cb99c018b1c68b5048e19df9d4552d5f41f0512f2e32fdd6a5e58a5b2d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cfa1237885074a8e8aba7c203d82e189b84760ffa946fb53e82ece762f40f36c
MD5 81e4dcbbcc3098315d6846075e324b40
BLAKE2b-256 cd1659a7d17719a49d453d35a21d2fc40bd7915f78046f82b3325f1f5629505a

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c70924ce14c7ed1663ff131f34bdf3987042f569b41a4ed756a1ad65109de760
MD5 b8c37b1900d87bb264f94d98a0228f7f
BLAKE2b-256 6b5ab70d670c67ca3d0284b4a52e32d65eb9767df51c0ff5b968db6a2bdc406c

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp313-cp313t-win_arm64.whl.

File metadata

  • Download URL: simsimd-6.5.16-cp313-cp313t-win_arm64.whl
  • Upload date:
  • Size: 63.1 kB
  • Tags: CPython 3.13t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for simsimd-6.5.16-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 a152c559298bae402ed8205b604e5b0418a2ce8a61a6a87f14973e53b68d5f6a
MD5 94131f680186ff4a260c4009c52ef1ac
BLAKE2b-256 ebac004dc381de9ac6634c785d0284dba8d1f12018584ddd992c09d9f85454b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp313-cp313t-win_arm64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: simsimd-6.5.16-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 87.6 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for simsimd-6.5.16-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 01ef2ff8cf99fc3a8e23fb2cadc06b6aa4df9b5e6d001b184d42cf403b1cdc16
MD5 b86c007970e372874050b71dfd0dc5c9
BLAKE2b-256 540db74a391fefe7d349230b58b1d0fe6d401d1625553b5375a99608f9d228a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp313-cp313t-win_amd64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 03f4d0a8aff48160e3b0acb44ac5525a39d26348db907d6d5ef516369b309973
MD5 1568afda2df2ad292168dcca3beb5236
BLAKE2b-256 e4ce892865784240c167624bf55f835ff74d52e24c7d7f1b9aa79f77358397ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp313-cp313t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp313-cp313t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 3daee137ffc2dd8bbe64b7f0f95ca2b2302b2985c35a6a7be61626052aa74e5d
MD5 186a42aa87fe851d0f5d1c9ee893c9bc
BLAKE2b-256 0d3e995e875eca129b1acb35e4824f1f4fab30b8393da80d51883552e2edd60f

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp313-cp313t-musllinux_1_2_s390x.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp313-cp313t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 141437e4d727872ab50fe3b19098816aee23b8c3519ee04c9831ef0326e444e1
MD5 5f073984c7c3b9aae6a220b6aa756a03
BLAKE2b-256 0708920d1619df54ed2c377dbfb10e0a561e27731091995ba1093b600ed3f00c

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp313-cp313t-musllinux_1_2_ppc64le.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 973460e647b3f769e714caa40b64f56dcf95a4afca98cdd19e2c3c1c9527e438
MD5 6ee6736d97776a9115ce1fbfb240785f
BLAKE2b-256 c026d6ecb102a16f01ea22e98bbf8da37b9a8cb4fb38459b939367afb401f1c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp313-cp313t-musllinux_1_2_i686.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8524c7fd12f7ef9b97e824c65db4e89919b7cc8d530780119b3417ce8643a3c2
MD5 f8952e94eae14f3b3d1d092dad7c5402
BLAKE2b-256 84e8190aead5370bc3e0bd0f5fbd938a27cac4678dd903e81ff16acae7d7c6e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 999acb24a43c619af6217b513536ae28bfe23c8fa170a4120a3cca7fdd22acff
MD5 48bf9584beaabf7591a132d7db45fd60
BLAKE2b-256 5e96de52bf9ffff59c71b9bc672d7a539c431d81a17d909c4ee734f7731b51d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 639bb66dbb15da8727267dc7b7fbf7cc59c18ccef901dd83cdff4f12651f0244
MD5 db29d23798a8e069efe7c4eaee847366
BLAKE2b-256 468c81e83b57992f1ae1bb3fa3d55cd1c4a5bd5dafcec6bd44273eb59c8f8f79

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c4b878a28a338c30768cb401f4fbb79bd5b911d95ca024717077f1c57746ad78
MD5 c7c34c5fad3703e140c1004201119158
BLAKE2b-256 c5c83c3fa982272ab7a5943ceacc04fd64a38d408fce2cd45e7890eb932e92d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp313-cp313t-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp313-cp313t-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 40a7e14e02acebd0cdadc88c3eeb262c6cbff550a10d4bce2c7771756cf68658
MD5 38d28a0f9fb272839ea015028b60a925
BLAKE2b-256 1aa6faaf1633cf9d3fc5ebe46d2f145f42257accc6bd25420d722702b6b5adfb

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp313-cp313t-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1b5a632299ee145fa2eab53906922d1596ee63f5a182e3741cde9b18745afe68
MD5 e4edb2c5bff6bc46bdb041e733b2f0ab
BLAKE2b-256 2791c31085edffdc81343f81b937fb2930cd0e105cfab1b9b97845c45b3621c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10d8b32ecee86a86fe30abb35a7c47c1d76756838355bc4377b73bdc69d16ed4
MD5 c8d0ccfe3ea8ce1ecbc2e15f47391114
BLAKE2b-256 094f43bf19becc155e5efdd31dc220c1bd34f866172739a7a081a8bfa2cae840

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 22624893c86cb9f07968a7e471ed81b2e59f68ba4941cea69ee7418b5cc6fe8e
MD5 09a5a90547b0d26276c62a0a63d33ce9
BLAKE2b-256 dfdf6a1b62074968bbd2976611ac9f89fa60bde2c0c3171f1eb303314bd2bb40

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp313-cp313t-macosx_10_13_x86_64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: simsimd-6.5.16-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 62.9 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for simsimd-6.5.16-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 3fc01992b9d3be84d4826c0d9f8a894668ad931285c09f74bdbe61a5400c9f4d
MD5 066e52cd12b2a615de9ed18c9a858774
BLAKE2b-256 a33c62a41c182ab6f7abfbfe8941fa12d08b8235b4498e988e5d1f29ac21504f

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp313-cp313-win_arm64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: simsimd-6.5.16-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 87.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for simsimd-6.5.16-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fe7a0fa49b09651cc1721f5928fa68665f4957c492937241bbdd6ed040dc4a5d
MD5 35cff853d5fbde4e303c10564f89473d
BLAKE2b-256 5d54dbc23d585a57c9b0e71ab10705c4121ce91a807df374d433dd86fb438caa

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp313-cp313-win_amd64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe922886957645e041618fddf242a89f5f7ded0c4bee13dc6537f749ccf75ba2
MD5 ebcd49e70077599c605a3f6577d54bd2
BLAKE2b-256 670531b5247c0e17cd82482fd1724881d49ce442ad6affb2776efae8f9cc4835

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5a4be386421726204f70e9f8601dc8818fc2df0032ef6dcd218cdf224a9fce18
MD5 f32f3e2f1b312588ced0d80732bff77c
BLAKE2b-256 145326bf42b6f8ec1f5680d91e95e276e49662bc1b8e0522c4861a0c3349b7ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ec7e92323c820935475bc9ec84938eecc9d9bc625055ff057a6d0dcfffb7eb2a
MD5 05122a2beca3f3b6218c26035836063d
BLAKE2b-256 2df26d84388c6e0f0637321149bc84bbbfa54a12f65f29bc6a007dd1403bf6f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fc1e29d8fed1c2b89338062fa17283b78181c84d2b024cc9bf7ed75402810bfc
MD5 282ead1c5f9ff70f1b4c1d5154a26d46
BLAKE2b-256 e139c6c7f66368204f0aa544aa074fa84b42a4146cf9e4bc79c3896c155d9abc

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 683f758d0261b3d8790f8c9fc63fdc64b7af4db66b59ba7a31556a755cb38df7
MD5 219c67a1a5c853b7210763aae8587d47
BLAKE2b-256 4621a52af2040ad608cc236583ada58b0bfa5ffbfdc83b1d3565f4793f28cade

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d0af914ab13741744ea1bd3521e719226633f2ab082dc5b07790c61685d88558
MD5 d5b295f1f567042e39658caef76f3753
BLAKE2b-256 1bf2e1dedb4b3644c76467c84ffb57fc6e7784f46f312c34be9d6b52144e3d90

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: simsimd-6.5.16-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 62.9 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for simsimd-6.5.16-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 fcfcc79473141f42b1db05037cb626e196ed20cffa7f768d4cad34b2a1239965
MD5 91b07a1067edec64edba5efb90598f07
BLAKE2b-256 1d68620c859f8737990371f79a45e3dc7135374635011c89b9e403cadd746639

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp312-cp312-win_arm64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: simsimd-6.5.16-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 87.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for simsimd-6.5.16-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e0ae95b0fe17c62532ecc66f03f6e9354641448249efabe6332eed0f5819150d
MD5 48a312d864f0f68d28206ba96cfc969e
BLAKE2b-256 4589a45ef421b70d557eac7d196b03e45ff9ff8c7c786b4e54dfb505c1efc0f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp312-cp312-win_amd64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a59ef1ab3d0f6d4f1dcac43e1b2db9b8e73c00e72714716e061bfd27dde2d652
MD5 7bd1d8b47b2bf75a975d8c019665db5d
BLAKE2b-256 bb65e218050eb89390c64ddc327f36da8e3b471483f11c0f3683c2bf891d2dab

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 97bcda199d4be8f4372af6b781e96e7e8cd1838ce256a83deef75ac660dcd464
MD5 4baebd70bd2bb105fd93997c99ef8274
BLAKE2b-256 ceb93a5717c988b6093a5fb15484754f7ffe5451a7559f3c1d5f2b3183199441

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 12ae4f5f2ade1152d2d3a0094f56fae636204d40595b385ea9b304410647a353
MD5 3b59d885a53c73c37b448b8bd2ca6c10
BLAKE2b-256 3c287ae846998728326759eab771afd83ad721b6c10e9cef7da2b5ca9bdd4a7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 13b8af340ad5cc1311cae6f8d778aef80bff1922260dee1a17ca60878eaac466
MD5 c19f9c004c60021d9e93ad4160d50710
BLAKE2b-256 fb3c35266c8d128ea42706d9436b54994039e2659fb37ed28f1c62e123a86631

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51c6b0ad0078f8c6b4d3ae4ec256bcf861c2bf5909d4567440b86f9ad7f94fd3
MD5 9c585888629615582cf1369c98437984
BLAKE2b-256 564f0fa014163c6b846182f6355ebfc24f79e86ced7a2cce0ca95ba711f19e04

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7f8a207a23bc9060a46b234ec304a712f1cbb0a240d18b484bad5cabf0d01746
MD5 1538f0082665cf09f737bc722c74abb1
BLAKE2b-256 52b853f89ca12a3526b86c4221de68497d2b1f4c3f7f6b47d8c153ef14c67d15

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: simsimd-6.5.16-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 62.8 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for simsimd-6.5.16-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 dfc5de474d502a5e85c57f2e26a9ec0e1fd426d97f6d3a2347a133dc10205801
MD5 348971dc1287119d51c8c15361dd0a01
BLAKE2b-256 71e4db8fcbbd7c323782ccc3bb68e1dab96fe97e38bff327e9fccbfc891ba990

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp311-cp311-win_arm64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: simsimd-6.5.16-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 87.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for simsimd-6.5.16-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 30d1450f8d111d3f50cf3d1cee893ece23f0f3f959a18057d0fed0b7a206a9e1
MD5 c4d45d746124ec4bf885d8a900627d30
BLAKE2b-256 f41064f681865af5bae1158c7d85b3e715e9be1f9987d6d73776ccd46cb6f75a

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp311-cp311-win_amd64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 565e39ee1b816498c65fec4ac398f75a83d2d2479c5a4e9db4e5e63b228fa86b
MD5 0e8961cd29b404a46b96ed9a6cd63320
BLAKE2b-256 f5ee88e281220ca1b262d7fb0fd38963fa849c1345b66e30c62bd7e3651719ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0c924b690a6654665c1ad44344efb02a6e26d57c2ef2055cc947f8e05e7f7727
MD5 69f5066d4f71a6cb478744d2e49dc685
BLAKE2b-256 1678e0d543a640716b3d88be623cd43c206c41b816dcd8e02b144ffa8a9b09dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 34c34c95a32c881ce2d64cec445c82d33f2e350ca02ad50b053a78407d6163ba
MD5 1eaa3a3850be49ca28afb868851bb991
BLAKE2b-256 63abed2272a7a3ed9a104a3224b0f3a389e051c11da67f9c4e8799397cef241e

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 49a7df7634db3d451cb9842857912032f4397704fb0fd0c857d2017474c2a6ac
MD5 83ff78e2b6dcf7de979ea97748374dff
BLAKE2b-256 1c23e6f8419702f5e40e8630c238daaa992bae78bcaa2f650e6fe3ac941a1e3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2802bc828bc5d22cec0b9a01f8fa3b0bf4df699f30ca05309035d1f57400fa07
MD5 9abb48415a2dab0976838d0bffacb26a
BLAKE2b-256 9d9ae889c90bf3c26ed54ff9cee33a63eca3325ed5600b3ba7808f68cb807040

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f3df3dcbeba9571ff08b847c51af69accb71962075aec730a6baf8878bccc196
MD5 38eab6fc50075b915101cc11bf6d7010
BLAKE2b-256 9f1093491bebccde37c30989bc576f00814296765977c5f26f66c02041a02986

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: simsimd-6.5.16-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 62.8 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for simsimd-6.5.16-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 21c95b614cf2d75a2b78e9ce30473fbba2825dbbe35aae3655aa133b0fdfd3e0
MD5 6dc81d843ce152077ceeb3070d4a7f72
BLAKE2b-256 13661205a5d18e1f7ff4da493c869b9c5bb4357e579fbcce7929c36398c6a211

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp310-cp310-win_arm64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: simsimd-6.5.16-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 87.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for simsimd-6.5.16-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6011396dfb4092a08bcde8deaff66c4c8ea67946db097ce34a3f9a6cf52edbbf
MD5 98ff4d03d2828f92125c9addb99c68bd
BLAKE2b-256 d0a70709e0c40e4da029751a1fd84aa845aa93305ce75ce72350070643ce6b5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp310-cp310-win_amd64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5638c6a80e63c5da4861058e566b2e8dd6022a7264e673a8866773b8212cf09f
MD5 4476ae1150aa7812290563f5a26d1fb2
BLAKE2b-256 9a0468fd6c087580653b5cfd30616cb1280297b565583b01971cc30d61c9d507

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e8a4741010989247883269c738d377d8e99b18730a1aeb9117fff2cd0575bbfe
MD5 8bae9019e6f59668d13c183263478bc6
BLAKE2b-256 7831f310a22c0d007f2f292891ed8a5eeb61fc7c6b86ebbbc11ff70bdae4d8f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 359a68159358645204055a60a29586bad5d57e6e5db4938d4335622c20a2b74b
MD5 b0f7979e7ebb38d81a0c61257595b042
BLAKE2b-256 dedf464cc7bae76a5ab26463d040debbbf371cb454b071b98f99438a2462779d

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 01b8cbd7f47062e5b42b9782b092a3ea9afd569920ac3af85b306af91d3a14d9
MD5 403f8e654e9b30a3cb3dda778d628c76
BLAKE2b-256 f4d55e64fa2ef2ec94554785b94bec390113c587ae37bde79ac2827e71b0c180

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0829067b6a618b0dc68e221d3856ce38f86f55f38327c381977de08777081b39
MD5 e663b7b345a58d5044f801da1c1de047
BLAKE2b-256 a8f6fcbe1945971929c0a17955c5f9e79b9917e4bbc928a32eec63b0411f81c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 192b6381ac8a9fe73b700fd97c65b326de261d2ee71c8ae9a264a0be889e50a5
MD5 24c1051e87d2aab553b4bfd3fac0b1f6
BLAKE2b-256 0bf223a59a3205e8dc9bde99b3e536e699bea15a974717b68730c94fa4d99795

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: simsimd-6.5.16-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 62.8 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for simsimd-6.5.16-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 c8dbf62ae456482123a241bbadfbb8457930c493f02fe60cc4816acf7a9518da
MD5 bce89050a0b3912a8fa952962aca007b
BLAKE2b-256 f1071b54eed128e8a93e373793c3c79dcf69a571af7f02a8943f82a18a1d23ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp39-cp39-win_arm64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: simsimd-6.5.16-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 87.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for simsimd-6.5.16-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 84737a28d8f2e33dea323fc66b4542c4d5f2917d6be00659e2f625ed79228adc
MD5 954c7ac400fd4ac480764a0a72dab65f
BLAKE2b-256 a2180dd751679820dd41292556de1f6d90eb14a602e5121d30e6e95ee5dda291

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp39-cp39-win_amd64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ffc9dfb3e6d5b2400344f6215ea8290f19c81f954a2b1800a3675f3f714e68e7
MD5 b71f20c36ec2b2d0888f50cc1839839a
BLAKE2b-256 770747183159255c328914dad58fe2c42567cee70483ff90132d7cdf8c6cc441

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 56e5146a3fa0d4b2a037a5576cc7ff5c4af23f7b86d2ff2ae2010395f836afe2
MD5 64a29592bc77122ec4693b1a3f4cf457
BLAKE2b-256 081dd6ddda63f9b865454ea5e39738af7029bd1401d300e3c341b923f8df3b5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8a103df2c451e93d8fd43115a4a85ecc539d311eeb83cceb4f01821c9fb8fa75
MD5 4a4d7bcecbe8b3acd873501b51c9481c
BLAKE2b-256 8c4b38ef42829df421fc0d4d853c055e4f8ca290211c2bfa4919f94be44ad406

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ca0cc0d2db071ae08b7e3de5242e4a56c79358e0e9e9adaa2c661798056e2837
MD5 83414fe2ebaae64f6b5142cd50511ca3
BLAKE2b-256 368eaef599b1240a8cf3f4be538b4db1f8e9e98cbcaa7187f9fc1c37cc3dded3

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7913f68d5be8f30096ea2ad1ee1710255969c40fedf056000a2fd03343ea91aa
MD5 2dbd4a2b8b04b9742f05aefb356a0a1c
BLAKE2b-256 6008905ea0c6a33fa368a047cf4779d9ee4bae3cb42981ab67abe34645c3c5cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 981b863f3f142ba0d5dae578f362eae494771f0572d1845d45b28d06b1c506b2
MD5 a7eced49f7bd0f6dbf4efdf894280d77
BLAKE2b-256 ab647e9e8d3510c473a78ccd074be599653097b62b94938bf3d2118424df6267

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: simsimd-6.5.16-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 87.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for simsimd-6.5.16-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e1cc7fe5ffc76a947bb59dc6d3852f685a7c6022ed091bf9336014fba60e9fa3
MD5 10fa6c5131f36e5ef6d2a030f0a8631c
BLAKE2b-256 296dfc7f7da09444eb1f783f7adab228ec500ea47642f1b668afdedcd887ab56

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp38-cp38-win_amd64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e2a2c5c649e3a2d7dabfeae67f9c282f311e05c51d93ee179a314f2e57400584
MD5 6f1376d19d8f2a87084602e0c0bb77ae
BLAKE2b-256 1e20f1e469774f198ca8adc48d710fb2e9cb4eef36b42cf89bd117c04a3ba280

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 babffe34c3e8cc4f8bd37140b1c693cef992a59b2a82a10a2a8069427aa3a80b
MD5 3abe08a236ca88ca8dae70a84db5dc06
BLAKE2b-256 08c421428360f5a473c58ff859d82f4f2e9912d6ea89d19e317d8852bb1f0f09

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 84fa946f88ad4499c1888856d1cb81dea23901f808727481db79f2338f888631
MD5 43d03e5e241f2060968137c53e99cea8
BLAKE2b-256 3d68e73974d5d1e8cedc8ad93f29b22ae77fd229a59e571d3c3e5f58508e4625

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2213c64ac43516235c508cc41e895a2200eadf30b2bc2987badbb318c57a3d9f
MD5 0dda4deef2faf27fab2920ba81a360cf
BLAKE2b-256 0df1f3d3f8ad15eefddd9fd3b9255ddf591a3b352accc39c8d3a40779c4e60a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1041ef9dab465e9d0fb2aa69307652c2b049b2a967d8940fd4c5acd14e794e7
MD5 220b7fd86afdecc913f3a32b0d58ddc9
BLAKE2b-256 82df71f4333479a4de8074865ceeb3e9dbc756a83c51933055d07c1ca53e573c

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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

File details

Details for the file simsimd-6.5.16-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for simsimd-6.5.16-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7e75845f03189b2ef2b658329cc150b40a00058b55c944a37d9624575533ae7b
MD5 6c57005ab4e9b9bbdb236bbeb97613f0
BLAKE2b-256 fb70371d3928e0145d0338f9ef2daecc6aa3db732d77ca88942fe7a4d5714aca

See more details on using hashes here.

Provenance

The following attestation bundles were made for simsimd-6.5.16-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: release.yml on ashvardanian/SimSIMD

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