VcDevel/Vc
SIMD Vector Classes for C++ observed · 2026-08-28
Health v2 · maintenance only
64/100
- Activity 91
- Release rhythm 8
- Longevity 100
How is this computed?
round(0.45*activity + 0.35*rhythm + 0.20*longevity); archived -> min(score, 10) — computed 2026-09-02. Adoption (stars, forks) is never an input.
- gap_med: n/a
- age_days: 4572
- days_rel: n/a
- days_push: 57
- n_releases_24m: 0
Adoption not part of the score
1542 stars · 152 forks observed · 2026-08-28
What it is AI-extracted, prompt v1, taxonomy v1, 2026-08-30, confidence not recorded
Vc is a portable, zero-overhead C++ library providing vector class types for explicit data-parallel (SIMD) programming. It lets developers state parallelism via the type system and compile the same code for AVX, AVX2, SSE2-SSE4.2, or scalar targets across different compilers.
Use cases
- explicitly vectorize C++ code with SIMD instructions
- write portable data-parallel code that compiles for AVX, SSE, or scalar targets
- speed up numeric loops that compilers fail to auto-vectorize efficiently
- apply the same operations to multiple values in parallel on the CPU
- migrate scalar math-heavy code to SIMD without writing intrinsics
- benchmark or compare vectorized vs scalar implementations across instruction sets
When to choose
- you need explicit, fine-grained SIMD control in C++ without hand-written intrinsics
- you want one codebase portable across x86 SIMD instruction sets and compilers
- you are maintaining an existing project already built on Vc
- you need zero-overhead abstractions where parallelism is expressed through types
When to avoid
- you are starting a new project - the README recommends std::simd (std-simd) instead
- you need AVX-512, NEON, or GPU/CUDA support, which is not available in the 1.x releases
- you rely on auto-vectorization of large loops spanning multiple translation units rather than explicit types
- you need actively developed features or new instruction set support
Facets
library · maturity maintenance
math concurrency compiler performance cross-platform cpp windows cross-platform simd vectorization data-parallel avx sse explicit-vectorization cpu-optimization high-performance-computing cpp11 cpp17 algorithms linux macos
1 source
- readme: https://github.com/VcDevel/Vc · fetched 2026-08-28 · 8ae910003624
Member repositories
| Repository | Role | Health v2 |
|---|---|---|
| VcDevel/Vc | main | 64 |
For agents
Data as of 2026-08-30T08:39:29.467469+00:00 · Report a problem