Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
eeprude committed May 26, 2024
1 parent 39a5ba2 commit 3caece6
Show file tree
Hide file tree
Showing 2 changed files with 115 additions and 143 deletions.
11 changes: 5 additions & 6 deletions lapack/src/KokkosLapack_geqrf.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,18 +117,17 @@ void geqrf(const ExecutionSpace& space, const AMatrix& A, const TauArray& Tau,
using AMatrix_Internal = Kokkos::View<
typename AMatrix::non_const_value_type**, typename AMatrix::array_layout,
typename AMatrix::device_type, Kokkos::MemoryTraits<Kokkos::Unmanaged>>;
using TauArray_Internal =
Kokkos::View<typename TauArray::non_const_value_type*,
typename TauArray::array_layout, typename TauArray::device_type,
Kokkos::MemoryTraits<Kokkos::Unmanaged>>;
using TauArray_Internal = Kokkos::View<
typename TauArray::non_const_value_type*, typename TauArray::array_layout,
typename TauArray::device_type, Kokkos::MemoryTraits<Kokkos::Unmanaged>>;
using InfoArray_Internal =
Kokkos::View<typename InfoArray::non_const_value_type*,
typename InfoArray::array_layout,
typename InfoArray::device_type,
Kokkos::MemoryTraits<Kokkos::Unmanaged>>;

AMatrix_Internal A_i = A;
TauArray_Internal Tau_i = Tau;
AMatrix_Internal A_i = A;
TauArray_Internal Tau_i = Tau;
InfoArray_Internal Info_i = Info;

KokkosLapack::Impl::GEQRF<ExecutionSpace, AMatrix_Internal, TauArray_Internal,
Expand Down
Loading

0 comments on commit 3caece6

Please sign in to comment.