Update tasks.json

This commit is contained in:
augustin64 2022-10-24 13:56:32 +02:00
parent 888bc0d141
commit 340e2fb5d2
2 changed files with 4 additions and 6 deletions

9
.vscode/tasks.json vendored
View File

@ -30,25 +30,22 @@
}, },
{ {
"label": "build-all", "label": "build-all",
"command": "${workspaceFolder}/make.sh", "command": "make",
"args": [ "args": [
"build",
"all" "all"
] ]
}, },
{ {
"label": "build-mnist", "label": "build-mnist",
"command": "${workspaceFolder}/make.sh", "command": "make",
"args": [ "args": [
"build",
"mnist" "mnist"
] ]
}, },
{ {
"label": "build-cnn", "label": "build-cnn",
"command": "${workspaceFolder}/make.sh", "command": "make",
"args": [ "args": [
"build",
"cnn" "cnn"
] ]
}, },

View File

@ -1,5 +1,6 @@
#include <stdlib.h> #include <stdlib.h>
#include <stdio.h> #include <stdio.h>
#include <math.h>
#include <stdint.h> #include <stdint.h>
#include <inttypes.h> #include <inttypes.h>