Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
34b2563
Environment: Detailed requirements.txt for 1.0 release
Apr 10, 2026
fdd5e8a
Fix: Hardware-agnostic auto-dtype detection for APU/CPU fallback
Apr 10, 2026
7bdd380
Final: Optimized memory-efficient engine with dynamic reconstruction;…
Apr 10, 2026
17631aa
TurboQuant V2: PolarQuant v9 implementation state with QJL fix
Apr 12, 2026
649a885
TurboQuant V2: Optimized VRAM allocation for 4090
Apr 12, 2026
2a131ec
Fix:
Apr 12, 2026
b849173
Clean:
Apr 12, 2026
8705944
chore: remove unused file and associated references
Apr 12, 2026
63b38f8
Merge polarquant-v2 into main: Fix accuracy (90.5->99%) and OOM (Page…
Apr 16, 2026
e6ae2e2
Merge polarquant-v2 into main: Fix accuracy (90.5->99%) and OOM (Page…
Apr 16, 2026
5eb4c52
TurboQuant V2: 99.59% Mathematical Parity achieved. Ready for Fused D…
Apr 16, 2026
7b697ec
feat: TurboQuant V3 Engine (Scaling & Blackwell Support)
Vincent-PRO-AI Apr 22, 2026
9084a4a
fix: Update example scripts with 4-bit load configuration
Vincent-PRO-AI Apr 22, 2026
e1e5cab
docs: specify v3-blackwell branch in quickstart
Vincent-PRO-AI Apr 22, 2026
08ce413
fix: Update validation script imports for V3 architecture
Vincent-PRO-AI Apr 22, 2026
42a3081
fix: triton_version is a string property not callable
Vincent-PRO-AI Apr 22, 2026
a09cbf8
fix: restore layer_idx argument name in cache.update for HF and test …
Vincent-PRO-AI Apr 22, 2026
8d9ae99
fix: complete HuggingFace DynamicCache protocol (len, seen_tokens, me…
Vincent-PRO-AI Apr 22, 2026
95d7838
fix: align cache tests and properties with HuggingFace DynamicCache p…
Vincent-PRO-AI Apr 22, 2026
158c9fa
fix: chunking in polar encode/decode and remove hardcoded token
Vincent-PRO-AI Apr 22, 2026
97cd1f0
fix: implement chunked prefill for all benchmark scripts to handle 32…
Vincent-PRO-AI Apr 22, 2026
55475fd
fix: avoid empty chunks in prefill logic
Vincent-PRO-AI Apr 22, 2026
e1a2c35
fix: stabilize needle test at 16k context for certification
Vincent-PRO-AI Apr 22, 2026
ff0b100
fix: finalize needle test at 4k for stable certification
Vincent-PRO-AI Apr 22, 2026
8ba8243
fix: correct _fused_decode argument signature to resolve quality regr…
Vincent-PRO-AI Apr 22, 2026
eadcf2d
fix: restore pos_emb extraction in model_patch.py
Vincent-PRO-AI Apr 23, 2026
3d54e14
fix: dynamic head count detection for heterogeneous Blackwell archite…
Vincent-PRO-AI Apr 23, 2026
0839cff
diag: disable fused path to isolate quality issue
Vincent-PRO-AI Apr 23, 2026
d079c4a
fix: re-enable fixed fused path with dynamic head detection
Vincent-PRO-AI Apr 23, 2026
f5341ce
fix: enforce 256-dim stride for TurboQuant V3 Blackwell certification
Vincent-PRO-AI Apr 23, 2026
2f6e3ae
fix: match fused head count to activation dimension for Gemma-4
Vincent-PRO-AI Apr 23, 2026
cdfc30c
cert: finalize High-Fidelity certification path for Blackwell
Vincent-PRO-AI Apr 23, 2026
3f8bd45
fix: update benchmark imports and cleanup deprecated MSE test
Vincent-PRO-AI Apr 23, 2026
f459af9
fix: finalized benchmark reporting for Blackwell certification
Vincent-PRO-AI Apr 23, 2026
d544008
fix: robust chunked prefill for all architectures
Vincent-PRO-AI Apr 23, 2026
5398bcd
cert: standard prefill for Blackwell performance audit
Vincent-PRO-AI Apr 23, 2026
a9bfef1
fix: reporting logic in benchmark
Vincent-PRO-AI Apr 23, 2026
4c59d5a
release: v3-blackwell production certification complete
Vincent-PRO-AI Apr 23, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 31 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,33 @@

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# Virtual Environments
.venv/
venv/
env/
ENV/

# Results & Assets
# (Optionally uncomment if you want to exclude them,
# but for a showcase, keeping small JSONs/PNGs is often good)
# data/
# assets/

# IDE files
.vscode/
.idea/

# OS generated files
.DS_Store
Thumbs.db

# Build artifacts
tq_impl.egg-info/
dist/
build/
.venv_wsl/
scratch/
benchmarks/*.txt
__pycache__/
*.pyc
.codebook_cache/
tq_impl.egg-info/
benchmarks/audit_v2_results.txt
Loading