Skip to content

Commit

Permalink
remove deprecated functions
Browse files Browse the repository at this point in the history
  • Loading branch information
mgates3 committed May 27, 2024
1 parent b3211e7 commit f2713eb
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 82 deletions.
23 changes: 0 additions & 23 deletions include/slate/Tile.hh
Original file line number Diff line number Diff line change
Expand Up @@ -89,29 +89,6 @@ MatrixType conj_transpose( MatrixType&& A )
return conj_transpose( A );
}

//------------------------------------------------------------------------------
/// Conjugate-transpose a Tile or any type of Matrix object,
/// changing op flag from NoTrans to ConjTrans, or from ConjTrans to NoTrans.
/// @return copy of Tile, etc. with updated op flag.
/// @see transpose()
///
/// @ingroup util
///
template<typename MatrixType>
[[deprecated( "Use conj_transpose instead. Remove 2024-02." )]]
MatrixType conjTranspose( MatrixType& A )
{
return conj_transpose( A );
}

//--------------------------------------
template<typename MatrixType>
[[deprecated( "Use conj_transpose instead. Remove 2024-02." )]]
MatrixType conjTranspose( MatrixType&& A )
{
return conj_transpose( A );
}

//------------------------------------------------------------------------------
/// Whether a tile is workspace or origin (local non-workspace),
/// and who owns (allocated, deallocates) the data.
Expand Down
59 changes: 0 additions & 59 deletions include/slate/slate.hh
Original file line number Diff line number Diff line change
Expand Up @@ -536,30 +536,6 @@ int64_t gesv_mixed(
int& iter,
Options const& opts = Options());

template <typename scalar_t>
[[deprecated( "Use gesv_mixed instead. Will be removed 2024-02." )]]
int64_t gesvMixed(
Matrix<scalar_t>& A, Pivots& pivots,
Matrix<scalar_t>& B,
Matrix<scalar_t>& X,
int& iter,
Options const& opts = Options())
{
return gesv_mixed( A, pivots, B, X, iter, opts );
}

template <typename scalar_hi, typename scalar_lo>
[[deprecated( "Use gesv_mixed instead. Will be removed 2024-02." )]]
int64_t gesvMixed(
Matrix<scalar_hi>& A, Pivots& pivots,
Matrix<scalar_hi>& B,
Matrix<scalar_hi>& X,
int& iter,
Options const& opts = Options())
{
return gesv_mixed( A, pivots, B, X, iter, opts );
}

//-----------------------------------------
// gesv_mixed_gmres()
template <typename scalar_t>
Expand Down Expand Up @@ -708,30 +684,6 @@ int64_t posv_mixed(

// todo: forward real-symmetric matrices to posv_mixed?

template <typename scalar_t>
[[deprecated( "Use posv_mixed instead. Will be removed 2024-02." )]]
int64_t posvMixed(
HermitianMatrix<scalar_t>& A,
Matrix<scalar_t>& B,
Matrix<scalar_t>& X,
int& iter,
Options const& opts = Options())
{
return posv_mixed( A, B, X, iter, opts );
}

template <typename scalar_hi, typename scalar_lo>
[[deprecated( "Use posv_mixed instead. Will be removed 2024-02." )]]
int64_t posvMixed(
HermitianMatrix<scalar_hi>& A,
Matrix<scalar_hi>& B,
Matrix<scalar_hi>& X,
int& iter,
Options const& opts = Options())
{
return posv_mixed( A, B, X, iter, opts );
}

//-----------------------------------------
// posv_mixed_gmres()
template <typename scalar_t>
Expand Down Expand Up @@ -926,17 +878,6 @@ void gels_cholqr(
Matrix<scalar_t>& BX,
Options const& opts = Options());

// Backward compatibility
template <typename scalar_t>
[[deprecated( "Use gels( A, BX[, opts] ) instead. Will be removed 2024-02." )]]
void gels(
Matrix<scalar_t>& A, TriangularFactors<scalar_t>& T,
Matrix<scalar_t>& BX,
Options const& opts = Options())
{
gels_qr( A, T, BX, opts );
}

// Routine selection
template <typename scalar_t>
void gels(
Expand Down

0 comments on commit f2713eb

Please sign in to comment.