TensorFlow builds for CPUs that Intel forgot
Precompiled TensorFlow binaries with AVX, FMA, and SSE enabled, back when pip's defaults were stuck in 2006.

What it does
This archived repo once distributed unofficial TensorFlow wheels compiled with modern SIMD instructions—AVX, FMA, SSE—so you could actually use your CPU’s vector units instead of watching TensorFlow crawl. The official pip packages at the time shipped without these flags, meaning performance left on the table for anyone without a GPU.
The interesting bit
The “archived” suffix is doing honest work: this repo is a tombstone. The README contains exactly one line, pointing to lakshayg/tensorflow-build as the new home. It’s a redirect in repo form—GitHub doesn’t do HTTP 301s, so someone did it manually.
Key highlights
- Precompiled binaries with AVX, FMA, SSE instruction sets enabled
- 1,896 stars suggest this solved a real pain point for CPU-bound ML workflows
- Shell-based build scripts (language tag confirms the infrastructure, not the output)
- Explicitly archived; active development moved to
tensorflow-build - Topics tagged:
machine-learning,simd-instructions,tensorflow
Caveats
- README is literally a redirect; zero technical detail preserved here
- “Archived” means stale binaries; SIMD support in official TensorFlow has improved since
Verdict
Worth a star for historical curiosity if you remember when Illegal instruction (core dumped) was the default TensorFlow-on-CPU experience. For actual use, follow the redirect to the current repo—or just check if official wheels now meet your needs.