From 5d21e783e197553faaa52cf1a6f5aa7483c6c14d Mon Sep 17 00:00:00 2001 From: Yuuichi Asahi Date: Thu, 24 Oct 2024 16:12:06 +0900 Subject: [PATCH] format --- common/unit_test/Test_Utils.cpp | 4 ++-- fft/src/KokkosFFT_Plans.hpp | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/common/unit_test/Test_Utils.cpp b/common/unit_test/Test_Utils.cpp index e4c66453..8861e4c0 100644 --- a/common/unit_test/Test_Utils.cpp +++ b/common/unit_test/Test_Utils.cpp @@ -567,8 +567,8 @@ TEST(ToArray, rvalue) { template void test_are_pointers_aliasing() { - using View1 = Kokkos::View; - using View2 = Kokkos::View; + using View1 = Kokkos::View; + using View2 = Kokkos::View; const int n1 = 10; // sizeof ValeuType2 is larger or equal to ValueType1 diff --git a/fft/src/KokkosFFT_Plans.hpp b/fft/src/KokkosFFT_Plans.hpp index e4d8a91b..f4b1e114 100644 --- a/fft/src/KokkosFFT_Plans.hpp +++ b/fft/src/KokkosFFT_Plans.hpp @@ -362,7 +362,8 @@ class Plan { // For the in-place Complex to Real transform, the output must be // reshaped to fit the original size (in.size() * 2) for correct // normalization - Kokkos::View out_tmp(out.data(), in.size() * 2); + Kokkos::View out_tmp(out.data(), + in.size() * 2); KokkosFFT::Impl::normalize(m_exec_space, out_tmp, m_direction, norm, m_fft_size); return;