mirror of
https://github.com/ikawrakow/ik_llama.cpp.git
synced 2026-01-26 17:20:01 +00:00
* Merging mainline - WIP * Merging mainline - WIP AVX2 and CUDA appear to work. CUDA performance seems slightly (~1-2%) lower as it is so often the case with llama.cpp/ggml after some "improvements" have been made. * Merging mainline - fix Metal * Remove check --------- Co-authored-by: Iwan Kawrakow <iwan.kawrakow@gmail.com>
22 lines
528 B
JSON
22 lines
528 B
JSON
{
|
|
"extraPaths": ["gguf-py"],
|
|
"pythonVersion": "3.9",
|
|
"pythonPlatform": "All",
|
|
"reportUnusedImport": "warning",
|
|
"reportDuplicateImport": "error",
|
|
"reportDeprecated": "warning",
|
|
"reportUnnecessaryTypeIgnoreComment": "warning",
|
|
"executionEnvironments": [
|
|
{
|
|
// TODO: make this version override work correctly
|
|
"root": "gguf-py",
|
|
"pythonVersion": "3.8",
|
|
},
|
|
{
|
|
// uses match expressions in steps.py
|
|
"root": "examples/server/tests",
|
|
"pythonVersion": "3.10",
|
|
},
|
|
],
|
|
}
|