aboutsummaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/tasks.json97
1 files changed, 97 insertions, 0 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
index 0bc892b..de94b50 100644
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -98,6 +98,103 @@
"--pause"
],
"group": "build"
+ },
+ {
+ "label": "bench 3d (no-simd - release) ",
+ "type": "shell",
+ "command": "cargo",
+ "args": [
+ "run",
+ "--bin",
+ "all_benchmarks3",
+ "--release",
+ "--features",
+ "other-backends",
+ "--",
+ "--pause"
+ ],
+ "group": "build"
+ },
+ {
+ "label": "bench 3d (simd - release) ",
+ "type": "shell",
+ "command": "cargo",
+ "args": [
+ "run",
+ "--bin",
+ "all_benchmarks3",
+ "--release",
+ "--features",
+ "simd-stable,other-backends",
+ "--",
+ "--pause"
+ ],
+ "group": "build"
+ },
+ {
+ "label": "bench 3d (simd - parallel - release) ",
+ "type": "shell",
+ "command": "cargo",
+ "args": [
+ "run",
+ "--bin",
+ "all_benchmarks3",
+ "--release",
+ "--features",
+ "simd-stable,other-backends,parallel",
+ "--",
+ "--pause"
+ ],
+ "group": "build"
+ },
+ {
+ "label": "bench 2d (no-simd - release) ",
+ "type": "shell",
+ "command": "cargo",
+ "args": [
+ "run",
+ "--bin",
+ "all_benchmarks2",
+ "--release",
+ "--features",
+ "other-backends",
+ "--",
+ "--pause"
+ ],
+ "group": "build"
+ },
+ {
+ "label": "bench 2d (simd - release) ",
+ "type": "shell",
+ "command": "cargo",
+ "args": [
+ "run",
+ "--bin",
+ "all_benchmarks2",
+ "--release",
+ "--features",
+ "simd-stable,other-backends",
+ "--",
+ "--pause"
+ ],
+ "group": "build"
+ },
+ {
+ "label": "bench 2d (simd - parallel - release) ",
+ "type": "shell",
+ "command": "cargo",
+ "args": [
+ "run",
+ "--bin",
+ "all_benchmarks2",
+ "--release",
+ "--features",
+ "simd-stable,other-backends,parallel",
+ "--",
+ "--pause"
+ ],
+ "group": "build"
}
]
+]
} \ No newline at end of file