From d34938ea395b5b92553ec6602f19cb65a684a4f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Oberhuber?= <oberhuber.tomas@gmail.com> Date: Fri, 12 Feb 2021 20:34:57 +0100 Subject: [PATCH] Added method havePadding to CSR segments. --- src/TNL/Algorithms/Segments/CSR.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/TNL/Algorithms/Segments/CSR.h b/src/TNL/Algorithms/Segments/CSR.h index 394d4dbade..c2ba871e6a 100644 --- a/src/TNL/Algorithms/Segments/CSR.h +++ b/src/TNL/Algorithms/Segments/CSR.h @@ -42,6 +42,8 @@ class CSR static constexpr ElementsOrganization getOrganization() { return ColumnMajorOrder; } + static constexpr bool havePadding() { return false; }; + CSR(); CSR( const SegmentsSizes& sizes ); -- GitLab