27#ifndef math_cusolverDnHandle_hpp
28#define math_cusolverDnHandle_hpp
30#include <cuda_runtime.h>
31#include <cusolverDn.h>
52 cusolverDnHandle_t m_handle{ NULL };
83 cusolverDnDestroy( m_handle );
90 cusolverStatus_t csec = cusolverDnCreate( &m_handle );
91 if( csec != CUSOLVER_STATUS_SUCCESS )
93 std::cerr << __FILE__ <<
" " << __LINE__ <<
" " << csec <<
"\n";
101 cusolverStatus_t csec = cusolverDnCreate( &m_handle );
102 if( csec != CUSOLVER_STATUS_SUCCESS )
104 std::cerr << __FILE__ <<
" " << __LINE__ <<
" " << csec <<
"\n";
113 if( m_handle == NULL )
115 std::cerr << __FILE__ <<
" " << __LINE__ <<
" cusolverDnHandle::setStream m_handle not set";
119 cusolverStatus_t csec = cusolverDnSetStream( m_handle, stream );
120 if( csec != CUSOLVER_STATUS_SUCCESS )
122 std::cerr << __FILE__ <<
" " << __LINE__ <<
"\n";
140 operator cusolverDnHandle_t()
Management of a cusolverDn handle.
void create(cudaStream_t stream)
Create (allocate) the handle.
cusolverDnHandle_t operator()()
Get the handle for use in calls to cusolverDN routines.
void setStream(cudaStream_t stream)
Create (allocate) the handle.
cusolverDnHandle(cudaStream_t stream)
Constructor which creates the handle and sets the stream.
cusolverDnHandle(bool create)
Constructor with option to create / not create the handle.
void create()
Create (allocate) the handle.
cusolverDnHandle()
Default c'tor.
~cusolverDnHandle()
Destructor.