Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
rasolca committed Jul 18, 2023
1 parent bc202e2 commit f679c7a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions include/dlaf/eigensolver/band_to_tridiag/mc.h
Original file line number Diff line number Diff line change
Expand Up @@ -751,6 +751,10 @@ TridiagResult<T, Device::CPU> BandToTridiag<Backend::MC, D, T>::call_L(

auto copy_tridiag_task = [a_ws](SizeType start, SizeType n_d, SizeType n_e,
const matrix::Tile<BaseType<T>, Device::CPU>& tile_t) {
DLAF_ASSERT_HEAVY(n_e >= 0 && (n_e == n_d || n_e == n_d - 1), n_e, n_d);
DLAF_ASSERT_HEAVY(tile_t.size().cols() == 2, tile_t);
DLAF_ASSERT_HEAVY(tile_t.size().rows() >= n_d, tile_t, n_d);

auto inc = a_ws->ld() + 1;
if (isComplex_v<T>)
// skip imaginary part if Complex.
Expand Down

0 comments on commit f679c7a

Please sign in to comment.