41 use,
intrinsic :: iso_c_binding
46 real(kind=
rp),
allocatable :: x(:,:)
47 type(c_ptr) :: x_d = c_null_ptr
48 integer,
private :: nrows = 0
49 integer,
private :: ncols = 0
50 integer,
private :: n = 0
90 integer,
intent(in) :: nrows
91 integer,
intent(in) :: ncols
93 call m%alloc(nrows, ncols)
106 integer,
intent(in) :: nrows
107 integer,
intent(in) :: ncols
111 allocate(m%x(nrows, ncols))
128 if (
allocated(m%x))
then
132 if (c_associated(m%x_d))
then
157 integer,
intent(in) :: memdir
158 logical,
intent(in) :: sync
185 if (
allocated(m%x))
then
189 if (.not.
allocated(m%x))
then
194 allocate(m%x(m%nrows, m%ncols))
213 real(kind=
rp),
intent(in) :: s
215 if (.not.
allocated(m%x))
then
229 integer,
optional :: bcknd
234 &implemented on accelarators.")
247 integer :: indr(m%nrows), indc(m%ncols), ipiv(m%ncols)
248 real(kind=
xp) :: rmult(m%nrows), amx, tmp, piv, eps
249 integer :: i, j, k, ir, jc
251 if (.not. (m%ncols .eq. m%nrows))
then
252 call neko_error(
"Fatal error: trying to invert m matrix that is not &
262 if (ipiv(i) .ne. 1)
then
264 if (ipiv(j) .eq. 0)
then
265 if (abs(m%x(i, j)) .ge. amx)
then
270 else if (ipiv(j) .gt. 1)
then
276 ipiv(jc) = ipiv(jc) + 1
282 m%x(ir, j) = m%x(jc, j)
289 if (abs(m%x(jc, jc)) .lt. eps)
then
290 call neko_error(
"matrix_inverse error: small Gauss Jordan Piv")
292 piv = 1.0_xp/m%x(jc, jc)
295 m%x(jc, j) = m%x(jc, j)*piv
300 m%x(jc, j) = m%x(1 , j)
304 rmult(i) = m%x(i, jc)
310 m%x(i, j) = m%x(i, j) - rmult(i)*m%x(1, j)
316 m%x(jc, j) = m%x(1 , j)
322 do j = m%nrows, 1, -1
323 if (indr(j) .ne. indc(j))
then
325 tmp = m%x(i, indr(j))
326 m%x(i, indr(j)) = m%x(i, indc(j))
327 m%x(i, indc(j)) = tmp
Deassociate a Fortran array from a device pointer.
Map a Fortran array to a device (allocate and associate)
Copy data between host and device (or device and device)
Synchronize a device or stream.
subroutine, public device_copy(a_d, b_d, n, strm)
Copy a vector .
subroutine, public device_cfill(a_d, c, n, strm)
Set all elements to a constant c .
Device abstraction, common interface for various accelerators.
subroutine, public device_free(x_d)
Deallocate memory on the device.
subroutine matrix_free(m)
Deallocate a matrix.
subroutine matrix_bcknd_inverse(m, bcknd)
pure integer function matrix_ncols(m)
Returns the number of columns in the matrix.
subroutine matrix_assign_matrix(m, w)
Assignment .
subroutine cpu_matrix_inverse(m)
pure integer function matrix_nrows(m)
Returns the number of rows in the matrix.
pure integer function matrix_size(m)
Returns the number of entries in the matrix.
subroutine matrix_copy_from(m, memdir, sync)
Easy way to copy between host and device.
subroutine matrix_assign_scalar(m, s)
Assignment .
subroutine matrix_init(m, nrows, ncols)
Initialise a matrix of size nrows*ncols.
subroutine matrix_allocate(m, nrows, ncols)
Allocate a matrix of size nrows*ncols.
integer, parameter neko_bcknd_device
integer, parameter, public xp
integer, parameter, public rp
Global precision used in computations.