Commit 33d6d426 authored by Khalique's avatar Khalique
Browse files

add std modifier

parent 88dac3b8
......@@ -6,7 +6,7 @@
namespace migraphx {
inline namespace MIGRAPHX_INLINE_NS {
inline size_t calculate_padding(size_t weight_dim, size_t dilation)
inline std::size_t calculate_padding(std::size_t weight_dim, std::size_t dilation)
{
return (dilation * (weight_dim - 1)) / 2;
}
......
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