From b07c2480e4e6c5289ccf55dff7798c572f216ffa Mon Sep 17 00:00:00 2001 From: Mikael Simberg Date: Fri, 18 Aug 2023 14:49:46 +0200 Subject: [PATCH] Remove unused `using pika::unwrapping` --- include/dlaf/auxiliary/norm/mc.h | 2 -- test/unit/communication/test_broadcast_panel.cpp | 2 -- test/unit/matrix/test_retiled_matrix.cpp | 1 - 3 files changed, 5 deletions(-) diff --git a/include/dlaf/auxiliary/norm/mc.h b/include/dlaf/auxiliary/norm/mc.h index 2ed85c3d12..7c406613a4 100644 --- a/include/dlaf/auxiliary/norm/mc.h +++ b/include/dlaf/auxiliary/norm/mc.h @@ -38,7 +38,6 @@ dlaf::BaseType Norm::max_L(comm::CommunicatorGri using dlaf::common::make_data; using dlaf::common::internal::vector; - using pika::unwrapping; using dlaf::tile::internal::lange; using dlaf::tile::internal::lantr; @@ -102,7 +101,6 @@ dlaf::BaseType Norm::max_G(comm::CommunicatorGri using dlaf::common::make_data; using dlaf::common::internal::vector; - using pika::unwrapping; using dlaf::tile::internal::lange; using dlaf::tile::internal::lantr; diff --git a/test/unit/communication/test_broadcast_panel.cpp b/test/unit/communication/test_broadcast_panel.cpp index 2903626e6c..cb66516f0e 100644 --- a/test/unit/communication/test_broadcast_panel.cpp +++ b/test/unit/communication/test_broadcast_panel.cpp @@ -54,7 +54,6 @@ std::vector test_params{ template void testBroadcast(const config_t& cfg, comm::CommunicatorGrid comm_grid) { using TypeUtil = TypeUtilities; - using pika::unwrapping; const matrix::Distribution dist(cfg.sz, cfg.blocksz, comm_grid.size(), comm_grid.rank(), {0, 0}); @@ -119,7 +118,6 @@ std::vector test_params_bcast_transpose{ template void testBroadcastTranspose(const config_t& cfg, comm::CommunicatorGrid comm_grid) { using TypeUtil = TypeUtilities; - using pika::unwrapping; const Distribution dist(cfg.sz, cfg.blocksz, comm_grid.size(), comm_grid.rank(), {0, 0}); const auto rank = dist.rankIndex().get(AxisSrc); diff --git a/test/unit/matrix/test_retiled_matrix.cpp b/test/unit/matrix/test_retiled_matrix.cpp index c15c81d0fa..8bcf8ca659 100644 --- a/test/unit/matrix/test_retiled_matrix.cpp +++ b/test/unit/matrix/test_retiled_matrix.cpp @@ -31,7 +31,6 @@ using namespace testing; namespace ex = pika::execution::experimental; namespace tt = pika::this_thread::experimental; -using pika::unwrapping; ::testing::Environment* const comm_grids_env = ::testing::AddGlobalTestEnvironment(new CommunicatorGrid6RanksEnvironment);