Registry / other / psimd
library2021-02-21vcpkgunverified

Portable 128-bit SIMD intrinsics providing a unified interface for SSE, NEON, and other SIMD instruction sets.

vcpkg install psimd
INSTALL
IMPORT
SIG · PSIMD
P
psimd
othercppv2021-02-21
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

psimd.h
#include <psimd.h>

Add two SIMD vectors

#include <psimd.h> #include <iostream> int main() { psimd_f32 a = psimd_load_f32(1.0f, 2.0f, 3.0f, 4.0f); psimd_f32 b = psimd_load_f32(4.0f, 3.0f, 2.0f, 1.0f); psimd_f32 c = psimd_add_f32(a, b); float result[4]; psimd_store_f32(result, c); std::cout << result[0] << " " << result[1] << " " << result[2] << " " << result[3] << std::endl; return 0; }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
2021-02-21latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
9 hits · last 30 days
node
8
Amazon
1
Resources

No resource links recorded.

psimd — pip install psimd · libregistry