Ross ROSS = Recommend OSS · open-source software intelligence for agents

google/highway

Performance-portable, length-agnostic SIMD with runtime dispatch observed · 2026-08-28

github.com/google/highway · C++ · NOASSERTION (other) observed · 2026-08-28

Health v2 · maintenance only

81/100

  • Activity 99
  • Release rhythm 48
  • Longevity 100

Flags: no_license

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: 252
  • age_days: 2553
  • days_rel: 132
  • days_push: 7
  • n_releases_24m: 2

Full methodology

Adoption not part of the score

5779 stars · 463 forks observed · 2026-08-28

What it is AI-extracted, prompt v1, taxonomy v1, 2026-08-29, confidence not recorded

Highway is a C++ library providing performance-portable SIMD/vector intrinsics that work across seven CPU architectures. It supports runtime dispatch to select the best available instruction set, or static targeting of a single instruction set with the same application code.

Use cases

  • write SIMD code that runs on x86, ARM, and WASM without rewriting
  • speed up image processing kernels with vector instructions
  • accelerate compression or cryptography routines with SIMD
  • avoid fragile compiler autovectorization with explicit vector intrinsics
  • dispatch to AVX-512 or NEON at runtime on heterogeneous hardware
  • implement fast sorting or linear algebra with data-parallel code

When to choose

  • you need predictable SIMD performance across multiple CPU architectures
  • you want runtime CPU feature dispatch without duplicating code
  • you need fine-grained control over vector instructions instead of relying on autovectorization
  • you are building performance-critical C++ software like codecs, image processing, or math libraries

When to avoid

  • your workload is not data-parallel and gains little from SIMD
  • you want a higher-level parallelism framework like OpenMP or TBB for task parallelism
  • you are not writing C++ or cannot use C++17
  • you only target a single CPU architecture and compiler intrinsics suffice

Facets

library · maturity stable

math image-processing compression cryptography performance graphics developer-tools cpp cross-platform wasm simd vectorization runtime-dispatch intrinsics avx2 avx512 neon sse algorithms gpu

1 source

Member repositories

RepositoryRoleHealth v2
google/highwaymain81

For agents

markdown · JSON · MCP: product_card(name="google/highway")

Data as of 2026-08-30T08:39:29.467469+00:00 · Report a problem