"example/39_permute/run_permute_element_example.inc" did not exist on "8b98d7d2fe92c36d7a95eccd0387c68ed7d81c44"
Commit 3d180a57 authored by Paul's avatar Paul
Browse files

Fix clang tidy issues

parent 8badb1e9
......@@ -86,7 +86,6 @@ rocm_enable_clang_tidy(
".*hpp"
EXTRA_ARGS
-DMIGRAPH_USE_CLANG_TIDY
ANALYZE_TEMPORARY_DTORS ON
)
include(ROCMCppCheck)
......
......@@ -228,13 +228,13 @@ struct pooling
input.lens()[1],
std::size_t(std::max<std::ptrdiff_t>(
1,
std::ceil((input.lens()[2] + 2 * padding[0] - lengths[0]) /
static_cast<float>(stride[0])) +
std::ptrdiff_t(std::ceil((input.lens()[2] + 2 * padding[0] - lengths[0]) /
static_cast<float>(stride[0]))) +
1)),
std::size_t(std::max<std::ptrdiff_t>(
1,
std::ceil((input.lens()[3] + 2 * padding[1] - lengths[1]) /
static_cast<float>(stride[1])) +
std::ptrdiff_t(std::ceil((input.lens()[3] + 2 * padding[1] - lengths[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