mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
cusolverDnHandle.hpp
Go to the documentation of this file.
1/** \file cusolverDnHandle.hpp
2 * \author Jared R. Males
3 * \brief Management of a cusolverDn handle
4 * \ingroup cuda_files
5 *
6 */
7
8//***********************************************************************//
9// Copyright 2025 Jared R. Males (jaredmales@gmail.com)
10//
11// This file is part of mxlib.
12//
13// mxlib is free software: you can redistribute it and/or modify
14// it under the terms of the GNU General Public License as published by
15// the Free Software Foundation, either version 3 of the License, or
16// (at your option) any later version.
17//
18// mxlib is distributed in the hope that it will be useful,
19// but WITHOUT ANY WARRANTY; without even the implied warranty of
20// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21// GNU General Public License for more details.
22//
23// You should have received a copy of the GNU General Public License
24// along with mxlib. If not, see <http://www.gnu.org/licenses/>.
25//***********************************************************************//
26
27#ifndef math_cusolverDnHandle_hpp
28#define math_cusolverDnHandle_hpp
29
30#include <cuda_runtime.h>
31#include <cusolverDn.h>
32
33namespace mx
34{
35namespace cuda
36{
37
38/// Management of a cusolverDn handle
39/** RAII management of a cusolverDn handle.
40 *
41 * The handle is not created automatically on default construction, e.g. in case
42 * it is desired to do so in a critical block scope.
43 *
44 * The handle is destroyed on the call to this class's destructor.
45 *
46 * \todo throw exceptions in cuda::cusolverDNHandle
47 */
49{
50
51 private:
52 cusolverDnHandle_t m_handle{ NULL };
53
54 public:
55 /// Default c'tor
56 /** Creates (allocates) the handle and sets the stream to nullptr
57 */
59 {
60 create( nullptr );
61 }
62
63 /// Constructor with option to create / not create the handle
64 explicit cusolverDnHandle( bool create /**< [in] if true the handle is created. if false it is not created. */ )
65 {
66 if( create )
67 {
68 this->create();
69 }
70 }
71
72 /// Constructor which creates the handle and sets the stream
73 explicit cusolverDnHandle( cudaStream_t stream /**< [in] cuda stream to associate with this handle. */ )
74 {
75 create( stream );
76 }
77
78 /// Destructor
80 {
81 if( m_handle )
82 {
83 cusolverDnDestroy( m_handle );
84 }
85 }
86
87 /// Create (allocate) the handle.
88 void create()
89 {
90 cusolverStatus_t csec = cusolverDnCreate( &m_handle );
91 if( csec != CUSOLVER_STATUS_SUCCESS )
92 {
93 std::cerr << __FILE__ << " " << __LINE__ << " " << csec << "\n";
94 exit( -1 );
95 }
96 }
97
98 /// Create (allocate) the handle.
99 void create( cudaStream_t stream )
100 {
101 cusolverStatus_t csec = cusolverDnCreate( &m_handle );
102 if( csec != CUSOLVER_STATUS_SUCCESS )
103 {
104 std::cerr << __FILE__ << " " << __LINE__ << " " << csec << "\n";
105 exit( -1 );
106 }
107 setStream( stream );
108 }
109
110 /// Create (allocate) the handle.
111 void setStream( cudaStream_t stream )
112 {
113 if( m_handle == NULL )
114 {
115 std::cerr << __FILE__ << " " << __LINE__ << " cusolverDnHandle::setStream m_handle not set";
116 exit( -1 );
117 }
118
119 cusolverStatus_t csec = cusolverDnSetStream( m_handle, stream );
120 if( csec != CUSOLVER_STATUS_SUCCESS )
121 {
122 std::cerr << __FILE__ << " " << __LINE__ << "\n";
123 exit( -1 );
124 }
125 }
126
127 /// Get the handle for use in calls to cusolverDN routines
128 /**
129 * \returns the cusolverDn handle
130 */
131 cusolverDnHandle_t operator()()
132 {
133 return m_handle;
134 }
135
136 /// Conversion operator, allows objects of this class to be used as if they are the handle
137 /**
138 * \returns the cusolverDn handle
139 */
140 operator cusolverDnHandle_t()
141 {
142 return m_handle;
143 }
144};
145
146} // namespace cuda
147} // namespace mx
148#endif // math_cusolverDnHandle_hpp
The mxlib c++ namespace.
Definition mxError.hpp:106
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.