Skip to content

Commit af1d460

Browse files
committed
layout_blas_general does not have an _extents member
Fix for issue kokkos#299 where we try to assign to _extents instead of assigning to _base_layout.extents Signed-off-by: Luc Berger-Vergiat <lberge@sandia.gov>
1 parent 184334f commit af1d460

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/experimental/__p1673_bits/layout_blas_general.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ class __layout_blas_impl {
104104
MDSPAN_INLINE_FUNCTION MDSPAN_IMPL_CONSTEXPR_14
105105
__layout_blas_impl& operator=(__layout_blas_impl<OtherExtents, OtherLDA> const& other)
106106
{
107-
this->_extents = other.extents();
107+
this->_base_layout.extents = other.extents();
108108
this->__lda = other.__lda.value;
109109
return *this;
110110
}

0 commit comments

Comments
 (0)