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",
"command": "${workspaceFolder}/make.sh",
"command": "make",
"args": [
"build",
"all"
]
},
{
"label": "build-mnist",
"command": "${workspaceFolder}/make.sh",
"command": "make",
"args": [
"build",
"mnist"
]
},
{
"label": "build-cnn",
"command": "${workspaceFolder}/make.sh",
"command": "make",
"args": [
"build",
"cnn"
]
},

View File

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