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 24, 2024
1 parent 4472d3d commit 985027a
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions include/lapack/device.hh
Original file line number Diff line number Diff line change
Expand Up @@ -58,22 +58,6 @@ public:
#endif
{}

// Pragmas so g++ ignores use of blas::Queue's deprecated constructor
// in lapack::Queue's deprecated constructor. clang already ignores it.
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
[[deprecated("use Queue( device ). Batch chunk size is handled automatically. To be removed 2024-05.")]]
Queue( int device, int64_t batch_chunk )
: blas::Queue( device, batch_chunk )
#if defined(LAPACK_HAVE_CUBLAS)
, solver_( nullptr )
#if CUSOLVER_VERSION >= 11000
, solver_params_( nullptr )
#endif
#endif
{}
#pragma GCC diagnostic pop

~Queue()
{
#if defined(LAPACK_HAVE_CUBLAS)
Expand Down

0 comments on commit 985027a

Please sign in to comment.