Commit 6177e85e authored by Khalique's avatar Khalique
Browse files

formatting

parent 2f65d247
......@@ -111,7 +111,7 @@ struct cpu_lrn
auto alphaoverarea = op.alpha / op.size;
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;
dfor(channels)([&](int c) {
auto start = (c - radius) < 0 ? 0 : (c - radius);
......@@ -131,7 +131,6 @@ struct cpu_lrn
});
return result;
}
};
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