-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathdnsdev_mod.F90
270 lines (234 loc) · 9.65 KB
/
dnsdev_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
! 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 dnsdev_mod
use iso_c_binding
use core_mod
type, bind(c) :: dnsdev_parms
integer(c_int) :: element_type
integer(c_int) :: pitch
integer(c_int) :: rows
integer(c_int) :: columns
integer(c_int) :: maxRowSize
integer(c_int) :: avgRowSize
integer(c_int) :: firstIndex
end type dnsdev_parms
interface
function FgetDnsDeviceParams(rows, columns, elementType, firstIndex) &
& result(res) bind(c,name='getDnsDeviceParams')
use iso_c_binding
import :: dnsdev_parms
type(dnsdev_parms) :: res
integer(c_int), value :: rows,columns,elementType,firstIndex
end function FgetDnsDeviceParams
end interface
interface
function FallocDnsDevice(deviceMat,rows,columns,&
& elementType,firstIndex) &
& result(res) bind(c,name='FallocDnsDevice')
use iso_c_binding
integer(c_int) :: res
integer(c_int), value :: rows,columns,elementType,firstIndex
type(c_ptr) :: deviceMat
end function FallocDnsDevice
end interface
interface writeDnsDevice
function writeDnsDeviceFloat(deviceMat,val,lda,nc) &
& result(res) bind(c,name='writeDnsDeviceFloat')
use iso_c_binding
integer(c_int) :: res
type(c_ptr), value :: deviceMat
integer(c_int), value :: lda,nc
real(c_float) :: val(lda,*)
end function writeDnsDeviceFloat
function writeDnsDeviceDouble(deviceMat,val,lda,nc) &
& result(res) bind(c,name='writeDnsDeviceDouble')
use iso_c_binding
integer(c_int) :: res
type(c_ptr), value :: deviceMat
integer(c_int), value :: lda,nc
real(c_double) :: val(lda,*)
end function writeDnsDeviceDouble
function writeDnsDeviceFloatComplex(deviceMat,val,lda,nc) &
& result(res) bind(c,name='writeDnsDeviceFloatComple')
use iso_c_binding
integer(c_int) :: res
type(c_ptr), value :: deviceMat
integer(c_int), value :: lda,nc
complex(c_float_complex) :: val(lda,*)
end function writeDnsDeviceFloatComplex
function writeDnsDeviceDoubleComplex(deviceMat,val,lda,nc) &
& result(res) bind(c,name='writeDnsDeviceDoubleComplex')
use iso_c_binding
integer(c_int) :: res
type(c_ptr), value :: deviceMat
integer(c_int), value :: lda,nc
complex(c_double_complex) :: val(lda,*)
end function writeDnsDeviceDoubleComplex
end interface
interface readDnsDevice
function readDnsDeviceFloat(deviceMat,val,lda,nc) &
& result(res) bind(c,name='readDnsDeviceFloat')
use iso_c_binding
integer(c_int) :: res
type(c_ptr), value :: deviceMat
integer(c_int), value :: lda,nc
real(c_float) :: val(lda,*)
end function readDnsDeviceFloat
function readDnsDeviceDouble(deviceMat,val,lda,nc) &
& result(res) bind(c,name='readDnsDeviceDouble')
use iso_c_binding
integer(c_int) :: res
type(c_ptr), value :: deviceMat
integer(c_int), value :: lda,nc
real(c_double) :: val(lda,*)
end function readDnsDeviceDouble
function readDnsDeviceFloatComplex(deviceMat,val,lda,nc) &
& result(res) bind(c,name='readDnsDeviceFloatComple')
use iso_c_binding
integer(c_int) :: res
type(c_ptr), value :: deviceMat
integer(c_int), value :: lda,nc
complex(c_float_complex) :: val(lda,*)
end function readDnsDeviceFloatComplex
function readDnsDeviceDoubleComplex(deviceMat,val,lda,nc) &
& result(res) bind(c,name='readDnsDeviceDoubleComplex')
use iso_c_binding
integer(c_int) :: res
type(c_ptr), value :: deviceMat
integer(c_int), value :: lda,nc
complex(c_double_complex) :: val(lda,*)
end function readDnsDeviceDoubleComplex
end interface
interface
subroutine freeDnsDevice(deviceMat) &
& bind(c,name='freeDnsDevice')
use iso_c_binding
type(c_ptr), value :: deviceMat
end subroutine freeDnsDevice
end interface
interface
subroutine resetDnsTimer() bind(c,name='resetDnsTimer')
use iso_c_binding
end subroutine resetDnsTimer
end interface
interface
function getDnsTimer() &
& bind(c,name='getDnsTimer') result(res)
use iso_c_binding
real(c_double) :: res
end function getDnsTimer
end interface
interface
function getDnsDevicePitch(deviceMat) &
& bind(c,name='getDnsDevicePitch') result(res)
use iso_c_binding
type(c_ptr), value :: deviceMat
integer(c_int) :: res
end function getDnsDevicePitch
end interface
!!$ interface csputDnsDeviceFloat
!!$ function dev_csputDnsDeviceFloat(deviceMat, nnz, ia, ja, val) &
!!$ & result(res) bind(c,name='dev_csputDnsDeviceFloat')
!!$ use iso_c_binding
!!$ integer(c_int) :: res
!!$ type(c_ptr), value :: deviceMat , ia, ja, val
!!$ integer(c_int), value :: nnz
!!$ end function dev_csputDnsDeviceFloat
!!$ end interface
!!$
!!$ interface csputDnsDeviceDouble
!!$ function dev_csputDnsDeviceDouble(deviceMat, nnz, ia, ja, val) &
!!$ & result(res) bind(c,name='dev_csputDnsDeviceDouble')
!!$ use iso_c_binding
!!$ integer(c_int) :: res
!!$ type(c_ptr), value :: deviceMat , ia, ja, val
!!$ integer(c_int), value :: nnz
!!$ end function dev_csputDnsDeviceDouble
!!$ end interface
!!$
!!$ interface csputDnsDeviceFloatComplex
!!$ function dev_csputDnsDeviceFloatComplex(deviceMat, nnz, ia, ja, val) &
!!$ & result(res) bind(c,name='dev_csputDnsDeviceFloatComplex')
!!$ use iso_c_binding
!!$ integer(c_int) :: res
!!$ type(c_ptr), value :: deviceMat , ia, ja, val
!!$ integer(c_int), value :: nnz
!!$ end function dev_csputDnsDeviceFloatComplex
!!$ end interface
!!$
!!$ interface csputDnsDeviceDoubleComplex
!!$ function dev_csputDnsDeviceDoubleComplex(deviceMat, nnz, ia, ja, val) &
!!$ & result(res) bind(c,name='dev_csputDnsDeviceDoubleComplex')
!!$ use iso_c_binding
!!$ integer(c_int) :: res
!!$ type(c_ptr), value :: deviceMat , ia, ja, val
!!$ integer(c_int), value :: nnz
!!$ end function dev_csputDnsDeviceDoubleComplex
!!$ end interface
interface spmvDnsDevice
function spmvDnsDeviceFloat(transa,m,n,k,alpha,deviceMat,x,beta,y) &
& result(res) bind(c,name='spmvDnsDeviceFloat')
use iso_c_binding
character(c_char), value :: transa
integer(c_int), value :: m, n, k
integer(c_int) :: res
type(c_ptr), value :: deviceMat, x, y
real(c_float) :: alpha, beta
end function spmvDnsDeviceFloat
function spmvDnsDeviceDouble(transa,m,n,k,alpha,deviceMat,x,beta,y) &
& result(res) bind(c,name='spmvDnsDeviceDouble')
use iso_c_binding
character(c_char), value :: transa
integer(c_int), value :: m, n, k
integer(c_int) :: res
type(c_ptr), value :: deviceMat, x, y
real(c_double) :: alpha, beta
end function spmvDnsDeviceDouble
function spmvDnsDeviceFloatComplex(transa,m,n,k,alpha,deviceMat,x,beta,y) &
& result(res) bind(c,name='spmvDnsDeviceFloatComplex')
use iso_c_binding
character(c_char), value :: transa
integer(c_int), value :: m, n, k
integer(c_int) :: res
type(c_ptr), value :: deviceMat, x, y
complex(c_float_complex) :: alpha, beta
end function spmvDnsDeviceFloatComplex
function spmvDnsDeviceDoubleComplex(transa,m,n,k,alpha,deviceMat,x,beta,y) &
& result(res) bind(c,name='spmvDnsDeviceDoubleComplex')
use iso_c_binding
character(c_char), value :: transa
integer(c_int), value :: m, n, k
integer(c_int) :: res
type(c_ptr), value :: deviceMat, x, y
complex(c_double_complex) :: alpha, beta
end function spmvDnsDeviceDoubleComplex
end interface
end module dnsdev_mod