1
0
mirror of https://github.com/TREX-CoE/irpjast.git synced 2024-07-23 03:07:47 +02:00
irpjast/qmckl_blas_f.f90

30 lines
954 B
Fortran
Raw Normal View History

2021-04-23 11:25:45 +02:00
! Generated from qmckl_dgemm.org
module qmckl_blas
use :: iso_c_binding
interface
subroutine qmckl_dgemm(transa, transb, m, n, k, &
2021-04-26 10:40:43 +02:00
alpha, A, lda, B, ldb, beta, C, ldc, tasks, ntasks) bind(C)
2021-04-23 11:25:45 +02:00
use :: iso_c_binding
implicit none
character(kind=c_char ), value :: transa, transb
integer (kind=c_int ), value :: m, n, k, lda, ldb, ldc
real (kind=c_double), value :: alpha, beta
real (kind=c_double) :: A(lda,*), B(ldb,*), C(ldc,*)
2021-04-26 10:40:43 +02:00
integer (kind=c_int64_t) :: tasks(*)
integer (kind=c_int64_t) :: ntasks
2021-04-23 11:25:45 +02:00
end subroutine qmckl_dgemm
end interface
2021-04-23 23:35:06 +02:00
interface
2021-04-26 10:40:43 +02:00
subroutine qmckl_tasks_run(tasks, ntasks) bind(C)
2021-04-23 23:35:06 +02:00
use :: iso_c_binding
implicit none
2021-04-26 10:40:43 +02:00
integer (kind=c_int64_t), value :: ntasks
integer (kind=c_int64_t) :: tasks(ntasks)
2021-04-23 23:35:06 +02:00
end subroutine qmckl_tasks_run
end interface
2021-04-23 11:25:45 +02:00
end module qmckl_blas