docs(cnn): add INT8 quantization design document

Add comprehensive design doc for INT8 quantization implementation
in ruvector-cnn, including calibration strategies and SIMD optimization.

Co-Authored-By: claude-flow <ruv@ruv.net>
This commit is contained in:
Reuven 2026-03-12 10:22:35 -04:00
parent 3ed78842dd
commit a36fdc80cf
2 changed files with 1061 additions and 9 deletions

View file

@ -6,7 +6,7 @@
"hooks": [
{
"type": "command",
"command": "node /workspaces/ruvector/.claude/helpers/hook-handler.cjs pre-bash",
"command": "node ./.claude/helpers/hook-handler.cjs pre-bash",
"timeout": 5000
}
]
@ -18,7 +18,7 @@
"hooks": [
{
"type": "command",
"command": "node /workspaces/ruvector/.claude/helpers/hook-handler.cjs post-edit",
"command": "node ./.claude/helpers/hook-handler.cjs post-edit",
"timeout": 10000
}
]
@ -29,7 +29,7 @@
"hooks": [
{
"type": "command",
"command": "node /workspaces/ruvector/.claude/helpers/hook-handler.cjs route",
"command": "node ./.claude/helpers/hook-handler.cjs route",
"timeout": 10000
}
]
@ -41,13 +41,13 @@
"hooks": [
{
"type": "command",
"command": "node /workspaces/ruvector/.claude/helpers/hook-handler.cjs session-restore",
"command": "node ./.claude/helpers/hook-handler.cjs session-restore",
"timeout": 15000,
"continueOnError": true
},
{
"type": "command",
"command": "node /workspaces/ruvector/.claude/helpers/auto-memory-hook.mjs import",
"command": "node ./.claude/helpers/auto-memory-hook.mjs import",
"timeout": 8000,
"continueOnError": true
}
@ -59,7 +59,7 @@
"hooks": [
{
"type": "command",
"command": "node /workspaces/ruvector/.claude/helpers/hook-handler.cjs session-end",
"command": "node ./.claude/helpers/hook-handler.cjs session-end",
"timeout": 10000,
"continueOnError": true
}
@ -71,7 +71,7 @@
"hooks": [
{
"type": "command",
"command": "node /workspaces/ruvector/.claude/helpers/auto-memory-hook.mjs sync",
"command": "node ./.claude/helpers/auto-memory-hook.mjs sync",
"timeout": 10000,
"continueOnError": true
}
@ -83,7 +83,7 @@
"hooks": [
{
"type": "command",
"command": "node /workspaces/ruvector/.claude/helpers/hook-handler.cjs status",
"command": "node ./.claude/helpers/hook-handler.cjs status",
"timeout": 3000,
"continueOnError": true
}
@ -93,7 +93,7 @@
},
"statusLine": {
"type": "command",
"command": "node /workspaces/ruvector/.claude/helpers/statusline.cjs",
"command": "node ./.claude/helpers/statusline.cjs",
"refreshMs": 5000,
"enabled": true
},

File diff suppressed because it is too large Load diff