mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-07-09 17:28:42 +00:00
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:
parent
3ed78842dd
commit
a36fdc80cf
2 changed files with 1061 additions and 9 deletions
|
|
@ -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
|
||||
},
|
||||
|
|
|
|||
1052
crates/ruvector-cnn/docs/INT8_QUANTIZATION_DESIGN.md
Normal file
1052
crates/ruvector-cnn/docs/INT8_QUANTIZATION_DESIGN.md
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue