Source: golang-github-kelindar-simd
Section: golang
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Juan Manuel Méndez Rey <juan.mendezr@proton.me>,
Build-Depends: debhelper-compat (= 13),
               dh-sequence-golang,
               golang-any,
               golang-github-klauspost-cpuid-dev,
               golang-github-stretchr-testify-dev,
Testsuite: autopkgtest-pkg-go
Standards-Version: 4.7.4
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-kelindar-simd
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-kelindar-simd.git
Homepage: https://github.com/kelindar/simd
XS-Go-Import-Path: github.com/kelindar/simd

Package: golang-github-kelindar-simd-dev
Architecture: all
Multi-Arch: foreign
Depends: golang-github-klauspost-cpuid-dev,
         ${misc:Depends},
Description: Auto-vectorized SIMD math functions for Go
 This library contains a set of vectorized mathematical functions which
 were auto-vectorized using the clang compiler and translated into PLAN9
 assembly code for Go. A generic version is also provided for CPUs where
 vectorization is not available.
 .
 It currently supports AVX2 on amd64 and NEON (Advanced SIMD) on arm64
 (including Apple Silicon).
 .
 Features:
  * Reduction ops: Sum, Min, Max
  * Element-wise ops: Add, Sub, Mul, Div
  * Typed fast paths for int, uint, float slices
  * Generic fallback when SIMD is unavailable
