Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
mgates3 committed Jan 23, 2024
1 parent 778a866 commit ce53591
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/test_utils.hh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include "slate/slate.hh"
#include "test.hh"

///-----------------------------------------------------------------------------
//------------------------------------------------------------------------------
/// Checks for common invalid parameter combinations
///
/// @return true if the configuration should be skipped
Expand Down Expand Up @@ -59,7 +59,7 @@ inline bool is_invalid_parameters(Params& params, bool keep_nonuniform_ref = fal
return false;
}

///-----------------------------------------------------------------------------
//------------------------------------------------------------------------------
/// Applies the operator thunk to each element of A and B to update B.
/// The matrices must have the same size, but can have different tile sizes and
/// distributions. However, the elements of a tile of B must all belong to the
Expand Down Expand Up @@ -150,7 +150,7 @@ void matrix_iterator(
A.releaseRemoteWorkspace();
}

///-----------------------------------------------------------------------------
//------------------------------------------------------------------------------
/// subtract_matrices takes input matrices A and B, and performs B = B - A.
/// The matrices must have the same size, but can have different tile sizes and
/// distributions. However, the elements of a tile of B must all belong to the
Expand All @@ -164,7 +164,7 @@ void subtract_matrices( matrix_type& A, matrix_type& B )
matrix_iterator( A, B, [](const scalar_t& a, scalar_t& b) { b -= a; } );
}

///-----------------------------------------------------------------------------
//------------------------------------------------------------------------------
/// copy_matrix copies A to B
/// The matrices must have the same size, but can have different tile sizes and
/// distributions. However, the elements of a tile of B must all belong to the
Expand Down

0 comments on commit ce53591

Please sign in to comment.