-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathllama.cpp-with-GUI.code-workspace
More file actions
73 lines (73 loc) · 2.19 KB
/
Copy pathllama.cpp-with-GUI.code-workspace
File metadata and controls
73 lines (73 loc) · 2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"folders": [
{
"name": "llama.cpp-with-GUI",
"path": "."
}
],
"settings": {
"python-envs.defaultEnvManager": "ms-python.python:system",
"cmake.configureOnOpen": false,
"C_Cpp.default.compileCommands": "${workspaceFolder}/build-vulkan/compile_commands.json",
"files.associations": {
"*.comp": "glsl",
"*.glsl": "glsl",
"*.jsonl": "jsonl",
"*.agent.md": "markdown",
"*.prompt.md": "markdown",
"*.instructions.md": "markdown",
"*.cu": "cuda-cpp",
"*.cuh": "cuda-cpp"
},
"files.exclude": {
"build/**": true,
"build-*/**": true,
"models/**": true,
"**/*.gguf": true,
"vendor/**": true,
"third_party/**": true
},
"search.exclude": {
"**/__pycache__/**": true,
"**/.pytest_cache/**": true,
"build/**": true,
"build-*/**": true,
"models/**": true,
"**/*.gguf": true,
"vendor/**": true,
"third_party/**": true,
"build_logs/**/*.csv": true,
"build_logs/**/*.json": true,
"build_logs/**/*.jsonl": true,
"build_logs/**/*.server.log": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/__pycache__/**": true,
"**/.pytest_cache/**": true,
"build/**": true,
"build-*/**": true,
"models/**": true,
"**/*.gguf": true,
"vendor/**": true,
"third_party/**": true,
"build_logs/**": true
}
},
"extensions": {
"recommendations": [
"github.copilot",
"github.copilot-chat",
"ms-python.python",
"ms-vscode.powershell",
"ms-vscode.cmake-tools",
"ms-vscode.cpptools",
"dbaumeis.radeon-gpu-analyzer"
],
"unwantedRecommendations": [
"ms-toolsai.jupyter",
"vscjava.vscode-java-pack"
]
}
}