forked from openvinotoolkit/openvino
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Commit slider] LLM bench support (openvinotoolkit#28037)
### Details: - *item1* - *...* ### Tickets: - *ticket-id*
- Loading branch information
1 parent
157d1b5
commit 26452a3
Showing
3 changed files
with
227 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
72 changes: 72 additions & 0 deletions
72
src/plugins/intel_cpu/tools/commit_slider/utils/cfg_samples/llm_bench.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
{ | ||
"appCmd":"source {venvName}/bin/activate && cd {appPath} && python3.10 -m pip install --upgrade pip && python3.10 -m pip install openvino=={wheelVersion} openvino_genai=={wheelVersion} openvino_tokenizers=={wheelVersion} --find-links={precommitPath}wheels/ && python3.10 -m pip install -r requirements.txt && {cmd}", | ||
"appPath" : "{appPath}", | ||
"venvCfg":{ | ||
"venvEnabled":true, | ||
"venvDir":"{workPath}/venv/", | ||
"venvName":"tempVenv" | ||
}, | ||
"commandList":[ | ||
|
||
], | ||
"runConfig":{ | ||
"mode":"llmBench", | ||
"traversal":"firstFailedVersion", | ||
"perfAppropriateDeviation" : 0.05, | ||
"commitList" : { | ||
"getCommitListCmd" : "git log {c1}..{c2} --boundary --pretty=\"%h\"" | ||
} | ||
}, | ||
"dlbConfig":{ | ||
"launchedAsJob":false, | ||
"toolName":"", | ||
"wheelVersionsMap":{ | ||
|
||
}, | ||
"commonPath":"{commitPath}", | ||
"subPath":"{subPath}", | ||
"appPath":"", | ||
"appCmd":"" | ||
}, | ||
"cachedPathConfig":{ | ||
"enabled":true, | ||
"scheme":"mandatory", | ||
"passCmdList":false, | ||
"changeAppPath":false, | ||
"commonPath":"{commitPath}", | ||
"subPath":"{subPath}", | ||
"cashMap":{ | ||
|
||
} | ||
}, | ||
"substitutionRules":[ | ||
{ | ||
"name":"precommitPath", | ||
"enabled":true, | ||
"type":"map", | ||
"placeholder":"precommitPath", | ||
"from":"$.cachedPathConfig.cashMap", | ||
"to":"$.appCmd" | ||
}, | ||
{ | ||
"name":"wheelVersion", | ||
"enabled":true, | ||
"type":"map", | ||
"placeholder":"wheelVersion", | ||
"from":"$.dlbConfig.wheelVersionsMap", | ||
"to":"$.appCmd" | ||
} | ||
], | ||
"subscriptions":[ | ||
{ | ||
"name":"wheelPathsMap", | ||
"enabled":true | ||
}, | ||
{ | ||
"name":"wheelVersionsMap", | ||
"enabled":true | ||
} | ||
], | ||
"verboseOutput" : true, | ||
"checkIfBordersDiffer" : true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters