From 14fb25f1961d93c697c9a4c01f89d8bf15ab1302 Mon Sep 17 00:00:00 2001 From: Fritz Goebel Date: Thu, 30 Nov 2023 16:48:35 +0000 Subject: [PATCH] Fix pre-commit errors --- include/ginkgo/core/distributed/matrix.hpp | 141 --------------------- 1 file changed, 141 deletions(-) diff --git a/include/ginkgo/core/distributed/matrix.hpp b/include/ginkgo/core/distributed/matrix.hpp index a32d6c3fb16..8c0aa39bb4c 100644 --- a/include/ginkgo/core/distributed/matrix.hpp +++ b/include/ginkgo/core/distributed/matrix.hpp @@ -117,147 +117,6 @@ auto with_matrix_type(Args&&... create_args) } -namespace experimental { -namespace distributed { - -#include - - -#if GINKGO_BUILD_MPI - - -#include -#include -#include -#include - - -namespace gko { -namespace matrix { - - -template -class Csr; - - -} - - -namespace detail { - - -/** -#include - - -#if GINKGO_BUILD_MPI - - -#include -#include -#include -#include - - -namespace gko { -namespace matrix { - - -template -class Csr; - - -} - - -namespace detail { - - -/** - * Helper struct to test if the Builder type has a function create(std::shared_ptr). - */ -template -struct is_matrix_type_builder : std::false_type {}; - - -template -struct is_matrix_type_builder< - Builder, ValueType, IndexType, - gko::xstd::void_t< - decltype(std::declval().template create( - std::declval>()))>> - : std::true_type {}; - - -template