Commit 5d103da5 authored by Paul's avatar Paul
Browse files

Formatting

parent 3d180a57
......@@ -229,12 +229,12 @@ struct pooling
std::size_t(std::max<std::ptrdiff_t>(
1,
std::ptrdiff_t(std::ceil((input.lens()[2] + 2 * padding[0] - lengths[0]) /
static_cast<float>(stride[0]))) +
static_cast<float>(stride[0]))) +
1)),
std::size_t(std::max<std::ptrdiff_t>(
1,
std::ptrdiff_t(std::ceil((input.lens()[3] + 2 * padding[1] - lengths[1]) /
static_cast<float>(stride[1]))) +
static_cast<float>(stride[1]))) +
1)),
}};
}
......
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