"vscode:/vscode.git/clone" did not exist on "8f44de85c73f49e9eaf9b8ddbd725acb8c6c851f"
Commit a822937a authored by ltqin's avatar ltqin
Browse files

change IsTileSkippable parameters name

parent b0ae034e
......@@ -69,10 +69,12 @@ struct MaskUpperTriangleFromBottomRightPredicate
return n > (m + diagonal_offset_);
}
__host__ __device__ constexpr bool
IsTileSkippable(index_t m, index_t n, index_t m_tile, index_t /*n_tile*/) const
__host__ __device__ constexpr bool IsTileSkippable(index_t m_tile_orig,
index_t n_tile_orig,
index_t m_tile_size,
index_t /*n_tile_size*/) const
{
return operator()(m + m_tile - 1, n);
return operator()(m_tile_orig + m_tile_size - 1, n_tile_orig);
}
private:
......
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