"docs/en_US/Release.md" did not exist on "2ffddd533dadfa49252032e1d011a7fd90c4953c"
Commit 6177e85e authored by Khalique's avatar Khalique
Browse files

formatting

parent 2f65d247
...@@ -111,7 +111,7 @@ struct cpu_lrn ...@@ -111,7 +111,7 @@ struct cpu_lrn
auto alphaoverarea = op.alpha / op.size; auto alphaoverarea = op.alpha / op.size;
auto radius = (op.size - 1) / 2; auto radius = (op.size - 1) / 2;
dfor(n_batch, height, width)([&](int b, int h, int w){ dfor(n_batch, height, width)([&](int b, int h, int w) {
double scale = 0; double scale = 0;
dfor(channels)([&](int c) { dfor(channels)([&](int c) {
auto start = (c - radius) < 0 ? 0 : (c - radius); auto start = (c - radius) < 0 ? 0 : (c - radius);
...@@ -131,7 +131,6 @@ struct cpu_lrn ...@@ -131,7 +131,6 @@ struct cpu_lrn
}); });
return result; return result;
} }
}; };
struct cpu_convolution struct cpu_convolution
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment