Fix typos (#107)

Signed-off-by: micaela <micaelaverucchi@gmail.com>
This commit is contained in:
micaela
2020-09-11 09:13:59 +02:00
parent 38106a9495
commit fa2b3d26cb
19 changed files with 50 additions and 50 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ MulAdd::MulAdd(Network *net, dnnType mul, dnnType add) : Layer(net) {
int size = input_dim.tot();
// create a vector with all value setted to add
// create a vector with all value set to add
dnnType *add_vector_h = new dnnType[size];
for(int i=0; i<size; i++)
add_vector_h[i] = add;