-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathz_cusparse_mod.F90
313 lines (285 loc) · 10.3 KB
/
z_cusparse_mod.F90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
! Parallel Sparse BLAS GPU plugin
! (C) Copyright 2013
!
! Salvatore Filippone
! Alessandro Fanfarillo
!
! Redistribution and use in source and binary forms, with or without
! modification, are permitted provided that the following conditions
! are met:
! 1. Redistributions of source code must retain the above copyright
! notice, this list of conditions and the following disclaimer.
! 2. Redistributions in binary form must reproduce the above copyright
! notice, this list of conditions, and the following disclaimer in the
! documentation and/or other materials provided with the distribution.
! 3. The name of the PSBLAS group or the names of its contributors may
! not be used to endorse or promote products derived from this
! software without specific written permission.
!
! THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
! ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
! TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
! PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE PSBLAS GROUP OR ITS CONTRIBUTORS
! BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
! CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
! SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
! INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
! CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
! ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
! POSSIBILITY OF SUCH DAMAGE.
!
module z_cusparse_mod
use base_cusparse_mod
type, bind(c) :: z_Cmat
type(c_ptr) :: Mat = c_null_ptr
end type z_Cmat
#if PSB_CUDA_SHORT_VERSION <= 10
type, bind(c) :: z_Hmat
type(c_ptr) :: Mat = c_null_ptr
end type z_Hmat
#endif
interface CSRGDeviceFree
function z_CSRGDeviceFree(Mat) &
& bind(c,name="z_CSRGDeviceFree") result(res)
use iso_c_binding
import z_Cmat
type(z_Cmat) :: Mat
integer(c_int) :: res
end function z_CSRGDeviceFree
end interface
interface CSRGDeviceSetMatType
function z_CSRGDeviceSetMatType(Mat,type) &
& bind(c,name="z_CSRGDeviceSetMatType") result(res)
use iso_c_binding
import z_Cmat
type(z_Cmat) :: Mat
integer(c_int),value :: type
integer(c_int) :: res
end function z_CSRGDeviceSetMatType
end interface
interface CSRGDeviceSetMatFillMode
function z_CSRGDeviceSetMatFillMode(Mat,type) &
& bind(c,name="z_CSRGDeviceSetMatFillMode") result(res)
use iso_c_binding
import z_Cmat
type(z_Cmat) :: Mat
integer(c_int),value :: type
integer(c_int) :: res
end function z_CSRGDeviceSetMatFillMode
end interface
interface CSRGDeviceSetMatDiagType
function z_CSRGDeviceSetMatDiagType(Mat,type) &
& bind(c,name="z_CSRGDeviceSetMatDiagType") result(res)
use iso_c_binding
import z_Cmat
type(z_Cmat) :: Mat
integer(c_int),value :: type
integer(c_int) :: res
end function z_CSRGDeviceSetMatDiagType
end interface
interface CSRGDeviceSetMatIndexBase
function z_CSRGDeviceSetMatIndexBase(Mat,type) &
& bind(c,name="z_CSRGDeviceSetMatIndexBase") result(res)
use iso_c_binding
import z_Cmat
type(z_Cmat) :: Mat
integer(c_int),value :: type
integer(c_int) :: res
end function z_CSRGDeviceSetMatIndexBase
end interface
#if PSB_CUDA_SHORT_VERSION <= 10
interface CSRGDeviceCsrsmAnalysis
function z_CSRGDeviceCsrsmAnalysis(Mat) &
& bind(c,name="z_CSRGDeviceCsrsmAnalysis") result(res)
use iso_c_binding
import z_Cmat
type(z_Cmat) :: Mat
integer(c_int) :: res
end function z_CSRGDeviceCsrsmAnalysis
end interface
#else
interface CSRGIsNullSvBuffer
function z_CSRGIsNullSvBuffer(Mat) &
& bind(c,name="z_CSRGIsNullSvBuffer") result(res)
use iso_c_binding
import z_Cmat
type(z_Cmat) :: Mat
integer(c_int) :: res
end function z_CSRGIsNullSvBuffer
end interface
#endif
interface CSRGDeviceAlloc
function z_CSRGDeviceAlloc(Mat,nr,nc,nz) &
& bind(c,name="z_CSRGDeviceAlloc") result(res)
use iso_c_binding
import z_Cmat
type(z_Cmat) :: Mat
integer(c_int), value :: nr, nc, nz
integer(c_int) :: res
end function z_CSRGDeviceAlloc
end interface
interface CSRGDeviceGetParms
function z_CSRGDeviceGetParms(Mat,nr,nc,nz) &
& bind(c,name="z_CSRGDeviceGetParms") result(res)
use iso_c_binding
import z_Cmat
type(z_Cmat) :: Mat
integer(c_int) :: nr, nc, nz
integer(c_int) :: res
end function z_CSRGDeviceGetParms
end interface
interface spsvCSRGDevice
function z_spsvCSRGDevice(Mat,alpha,x,beta,y) &
& bind(c,name="z_spsvCSRGDevice") result(res)
use iso_c_binding
import z_Cmat
type(z_Cmat) :: Mat
type(c_ptr), value :: x
type(c_ptr), value :: y
complex(c_double_complex), value :: alpha,beta
integer(c_int) :: res
end function z_spsvCSRGDevice
end interface
interface spmvCSRGDevice
function z_spmvCSRGDevice(Mat,alpha,x,beta,y) &
& bind(c,name="z_spmvCSRGDevice") result(res)
use iso_c_binding
import z_Cmat
type(z_Cmat) :: Mat
type(c_ptr), value :: x
type(c_ptr), value :: y
complex(c_double_complex), value :: alpha,beta
integer(c_int) :: res
end function z_spmvCSRGDevice
end interface
interface CSRGHost2Device
function z_CSRGHost2Device(Mat,m,n,nz,irp,ja,val) &
& bind(c,name="z_CSRGHost2Device") result(res)
use iso_c_binding
import z_Cmat
type(z_Cmat) :: Mat
integer(c_int), value :: m,n,nz
integer(c_int) :: irp(*), ja(*)
complex(c_double_complex) :: val(*)
integer(c_int) :: res
end function z_CSRGHost2Device
end interface
interface CSRGDevice2Host
function z_CSRGDevice2Host(Mat,m,n,nz,irp,ja,val) &
& bind(c,name="z_CSRGDevice2Host") result(res)
use iso_c_binding
import z_Cmat
type(z_Cmat) :: Mat
integer(c_int), value :: m,n,nz
integer(c_int) :: irp(*), ja(*)
complex(c_double_complex) :: val(*)
integer(c_int) :: res
end function z_CSRGDevice2Host
end interface
#if PSB_CUDA_SHORT_VERSION <= 10
interface HYBGDeviceAlloc
function z_HYBGDeviceAlloc(Mat,nr,nc,nz) &
& bind(c,name="z_HYBGDeviceAlloc") result(res)
use iso_c_binding
import z_hmat
type(z_Hmat) :: Mat
integer(c_int), value :: nr, nc, nz
integer(c_int) :: res
end function z_HYBGDeviceAlloc
end interface
interface HYBGDeviceFree
function z_HYBGDeviceFree(Mat) &
& bind(c,name="z_HYBGDeviceFree") result(res)
use iso_c_binding
import z_Hmat
type(z_Hmat) :: Mat
integer(c_int) :: res
end function z_HYBGDeviceFree
end interface
interface HYBGDeviceSetMatType
function z_HYBGDeviceSetMatType(Mat,type) &
& bind(c,name="z_HYBGDeviceSetMatType") result(res)
use iso_c_binding
import z_Hmat
type(z_Hmat) :: Mat
integer(c_int),value :: type
integer(c_int) :: res
end function z_HYBGDeviceSetMatType
end interface
interface HYBGDeviceSetMatFillMode
function z_HYBGDeviceSetMatFillMode(Mat,type) &
& bind(c,name="z_HYBGDeviceSetMatFillMode") result(res)
use iso_c_binding
import z_Hmat
type(z_Hmat) :: Mat
integer(c_int),value :: type
integer(c_int) :: res
end function z_HYBGDeviceSetMatFillMode
end interface
interface HYBGDeviceSetMatDiagType
function z_HYBGDeviceSetMatDiagType(Mat,type) &
& bind(c,name="z_HYBGDeviceSetMatDiagType") result(res)
use iso_c_binding
import z_Hmat
type(z_Hmat) :: Mat
integer(c_int),value :: type
integer(c_int) :: res
end function z_HYBGDeviceSetMatDiagType
end interface
interface HYBGDeviceSetMatIndexBase
function z_HYBGDeviceSetMatIndexBase(Mat,type) &
& bind(c,name="z_HYBGDeviceSetMatIndexBase") result(res)
use iso_c_binding
import z_Hmat
type(z_Hmat) :: Mat
integer(c_int),value :: type
integer(c_int) :: res
end function z_HYBGDeviceSetMatIndexBase
end interface
interface HYBGDeviceHybsmAnalysis
function z_HYBGDeviceHybsmAnalysis(Mat) &
& bind(c,name="z_HYBGDeviceHybsmAnalysis") result(res)
use iso_c_binding
import z_Hmat
type(z_Hmat) :: Mat
integer(c_int) :: res
end function z_HYBGDeviceHybsmAnalysis
end interface
interface spsvHYBGDevice
function z_spsvHYBGDevice(Mat,alpha,x,beta,y) &
& bind(c,name="z_spsvHYBGDevice") result(res)
use iso_c_binding
import z_Hmat
type(z_Hmat) :: Mat
type(c_ptr), value :: x
type(c_ptr), value :: y
complex(c_double_complex), value :: alpha,beta
integer(c_int) :: res
end function z_spsvHYBGDevice
end interface
interface spmvHYBGDevice
function z_spmvHYBGDevice(Mat,alpha,x,beta,y) &
& bind(c,name="z_spmvHYBGDevice") result(res)
use iso_c_binding
import z_Hmat
type(z_Hmat) :: Mat
type(c_ptr), value :: x
type(c_ptr), value :: y
complex(c_double_complex), value :: alpha,beta
integer(c_int) :: res
end function z_spmvHYBGDevice
end interface
interface HYBGHost2Device
function z_HYBGHost2Device(Mat,m,n,nz,irp,ja,val) &
& bind(c,name="z_HYBGHost2Device") result(res)
use iso_c_binding
import z_Hmat
type(z_Hmat) :: Mat
integer(c_int), value :: m,n,nz
integer(c_int) :: irp(*), ja(*)
complex(c_double_complex) :: val(*)
integer(c_int) :: res
end function z_HYBGHost2Device
end interface
#endif
end module z_cusparse_mod