simde 0.7.6-1 source package in Ubuntu

Changelog

simde (0.7.6-1) unstable; urgency=medium

  * Upload 0.7.6-1 to 'unstable'.
  * Document upstream source for ppc64el_fixes patch.

 -- Michael R. Crusoe <email address hidden>  Tue, 13 Jun 2023 12:05:05 +0200

Upload details

Uploaded by:
Debian Med
Uploaded to:
Sid
Original maintainer:
Debian Med
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Noble proposed universe misc

Builds

Mantic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
simde_0.7.6-1.dsc 2.0 KiB 78f5cb7c2ee843c98080e949a64eeb560bf789aa34e48315b7629ceee7b23d08
simde_0.7.6.orig.tar.xz 3.9 MiB 42c233a183809e1dd20e3a3d3d9991b299d6153df2efc8de3b4ea6ced5692cea
simde_0.7.6-1.debian.tar.xz 23.6 KiB f31eb7a1160057f8b26ce6d085084d10c0603130302a143b6a68c95f5a26d833

Available diffs

No changes file available.

Binary packages built by this source

libsimde-dev: Implementations of SIMD instructions for all systems

 SIMDe provides fast, portable implementations of SIMD intrinsics on hardware
 which doesn't natively support them, such as calling SSE functions on ARM.
 There is no performance penalty if the hardware supports the native
 implementation (e.g., SSE/AVX runs at full speed on x86, NEON on ARM, etc.).
 .
 This makes porting code to other architectures much easier in a few key ways:
 .
 First, instead of forcing you to rewrite everything for each architecture,
 SIMDe lets you get a port up and running almost effortlessly. You can then
 start working on switching the most performance-critical sections to native
 intrinsics, improving performance gradually. SIMDe lets (for example) SSE/AVX
 and NEON code exist side-by-side, in the same implementation.
 .
 Second, SIMDe makes it easier to write code targeting ISA extensions you don't
 have convenient access to. You can run NEON code on your x86 machine without an
 emulator. Obviously you'll eventually want to test on the actual hardware
 you're targeting, but for most development, SIMDe can provide a much easier
 path.
 .
 SIMDe takes a very different approach from most other SIMD abstraction layers
 in that it aims to expose the entire functionality of the underlying
 instruction set. Instead of limiting functionality to the lowest common
 denominator, SIMDe tries to minimize the amount of effort required to port
 while still allowing you the space to optimize as needed.
 .
 The current focus is on writing complete portable implementations, though a
 large number of functions already have accelerated implementations using one
 (or more) of the following:
 .
     SIMD intrinsics from other ISA extensions (e.g., using NEON to implement
 SSE).
     Compiler-specific vector extensions and built-ins such as
 __builtin_shufflevector and __builtin_convertvector
     Compiler auto-vectorization hints, using:
        OpenMP 4 SIMD
        Cilk Plus
        GCC loop-specific pragmas
        clang pragma loop hint directives