-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconvolution-benchmarks.code-workspace
124 lines (124 loc) · 4.1 KB
/
convolution-benchmarks.code-workspace
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"folders": [
{
"path": "."
}
],
"extensions": {
"recommendations": [
"ms-vscode.cmake-tools",
"twxs.cmake",
"ms-vscode.cpptools",
"llvm-vs-code-extensions.vscode-clangd",
"vadimcn.vscode-lldb",
"matepek.vscode-catch2-test-adapter",
"xaver.clang-format",
"streetsidesoftware.code-spell-checker"
]
},
"settings": {
"C_Cpp.intelliSenseEngine": "Disabled",
"C_Cpp.autocomplete": "Disabled", // Autocomplete only from clangd
"C_Cpp.errorSquiggles": "Disabled", // Error squiggles only from clangd
"C_Cpp.default.cppStandard": "c++20",
"cmake.buildDirectory": "${workspaceFolder}/build",
"git.ignoreLimitWarning": true,
"clangd.arguments": [
"--log=info",
"--pretty",
"--clang-tidy",
"--completion-style=detailed",
"--background-index",
"--compile-commands-dir=./build",
"--header-insertion=iwyu"
//,"--query-driver=\"/usr/bin/clang++\""
],
"cmake.ctestArgs": [
"--verbose"
],
"cmake.configureArgs": [
//"-DENFORCE_VECTOR_EXTENSION_SSE2:BOOL=TRUE"
//"-DENFORCE_VECTOR_EXTENSION_AVX:BOOL=TRUE"
//"-DENFORCE_VECTOR_EXTENSION_AVX2:BOOL=TRUE"
],
"cmake.preferredGenerators": [
"Ninja",
"Unix Makefiles",
"Visual Studio 17 2022"
],
"cSpell.words": [
"Bakhvalov",
"cmake",
"convolutional",
"cppcoreguidelines",
"Daubechies",
"Godbolt",
"intrinsics",
"joht",
"MSVC",
"NOLINT",
"parallelizer",
"SIMD",
"Struct",
"tparam",
"vectorize",
"Vectorizer",
"vectorizing",
"wilczek"
],
"cSpell.blockCheckingWhenTextChunkSizeGreaterThan": 1000,
"editor.codeActionsOnSave": {
"source.fixAll": true
},
"editor.formatOnSaveMode": "modifications",
"clang-format.style": "file",
"clang-format.language.c.enable": true,
"[c]": {
"editor.defaultFormatter": "xaver.clang-format",
"editor.wordBasedSuggestions": false,
"editor.suggest.insertMode": "replace",
"editor.semanticHighlighting.enabled": true
},
"C_Cpp.codeAnalysis.clangTidy.enabled": true,
},
"launch": {
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "MacOS Tests",
"program": "${workspaceFolder}/build/test/ConvolutionBenchmarksTests",
"args": [
"--break",
"--success",
//"--list-tests",
//"--list-tags",
//"--list-reporters",
"--reporter XML::out=${workspaceFolder}/build/test/out=manual-test-report.xml",
"--reporter console::out=-::colour-mode=ansi",
"--verbosity high",
"--skip-benchmarks"
],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Windows Tests",
"program": "${workspaceFolder}/build/test/ConvolutionBenchmarksTests.exe",
"args": [
"--break",
"--success",
//"--list-tests",
//"--list-tags",
//"--list-reporters",
"--reporter XML::out=${workspaceFolder}/build/test/out=manual-test-report.xml",
"--reporter console::out=-::colour-mode=win32",
"--verbosity high",
"--skip-benchmarks"
],
"cwd": "${workspaceFolder}"
},
]
}
}