Skip to content

Commit bd22118

Browse files
committed
Formatting
1 parent 51a27b2 commit bd22118

File tree

2 files changed

+115
-143
lines changed

2 files changed

+115
-143
lines changed

lapack/src/KokkosLapack_geqrf.hpp

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -117,18 +117,17 @@ void geqrf(const ExecutionSpace& space, const AMatrix& A, const TauArray& Tau,
117117
using AMatrix_Internal = Kokkos::View<
118118
typename AMatrix::non_const_value_type**, typename AMatrix::array_layout,
119119
typename AMatrix::device_type, Kokkos::MemoryTraits<Kokkos::Unmanaged>>;
120-
using TauArray_Internal =
121-
Kokkos::View<typename TauArray::non_const_value_type*,
122-
typename TauArray::array_layout, typename TauArray::device_type,
123-
Kokkos::MemoryTraits<Kokkos::Unmanaged>>;
120+
using TauArray_Internal = Kokkos::View<
121+
typename TauArray::non_const_value_type*, typename TauArray::array_layout,
122+
typename TauArray::device_type, Kokkos::MemoryTraits<Kokkos::Unmanaged>>;
124123
using InfoArray_Internal =
125124
Kokkos::View<typename InfoArray::non_const_value_type*,
126125
typename InfoArray::array_layout,
127126
typename InfoArray::device_type,
128127
Kokkos::MemoryTraits<Kokkos::Unmanaged>>;
129128

130-
AMatrix_Internal A_i = A;
131-
TauArray_Internal Tau_i = Tau;
129+
AMatrix_Internal A_i = A;
130+
TauArray_Internal Tau_i = Tau;
132131
InfoArray_Internal Info_i = Info;
133132

134133
KokkosLapack::Impl::GEQRF<ExecutionSpace, AMatrix_Internal, TauArray_Internal,

0 commit comments

Comments
 (0)