Fix compilation of parallel version

This commit is contained in:
Sébastien Crozet
2022-01-23 17:06:42 +01:00
parent 9bfcde25e0
commit 5e2111bdb1
2 changed files with 40 additions and 5 deletions

36
.vscode/tasks.json vendored
View File

@@ -29,9 +29,23 @@
"all_examples3",
"--release",
"--features",
"simd-stable",
"simd-stable,other-backends",
"--",
"--pause"
],
"group": "build"
},
{
"label": "run 3d (simd - parallel - release) ",
"type": "shell",
"command": "cargo",
"args": [
"run",
"--bin",
"all_examples3",
"--release",
"--features",
"other-backends",
"simd-stable,other-backends,parallel",
"--",
"--pause"
],
@@ -63,9 +77,23 @@
"all_examples2",
"--release",
"--features",
"simd-stable",
"simd-stable,other-backends",
"--",
"--pause"
],
"group": "build"
},
{
"label": "run 2d (simd - parallel - release) ",
"type": "shell",
"command": "cargo",
"args": [
"run",
"--bin",
"all_examples2",
"--release",
"--features",
"other-backends",
"simd-stable,other-backends,parallel",
"--",
"--pause"
],