Skip to content

Commit f4d8681

Browse files
committed
Backup
1 parent 3caece6 commit f4d8681

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lapack/unit_test/Test_Lapack_geqrf.hpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,8 @@ void getQR(int const m, int const n, typename ViewTypeA::HostMirror const& h_A,
191191

192192
template <class ViewTypeA, class ViewTypeTau, class Device>
193193
void impl_test_geqrf(int m, int n) {
194-
using ViewTypeInfo = Kokkos::View<int*, Kokkos::LayoutLeft, Device>;
194+
using ALayout_t = typename ViewTypeA::array_layout;
195+
using ViewTypeInfo = Kokkos::View<int*, ALayout_t, Device>;
195196
using execution_space = typename Device::execution_space;
196197
using ScalarA = typename ViewTypeA::value_type;
197198
using ats = Kokkos::ArithTraits<ScalarA>;

0 commit comments

Comments
 (0)