Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: extend intrinsic matmul #951

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
3 changes: 2 additions & 1 deletion example/intrinsics/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
ADD_EXAMPLE(sum)
ADD_EXAMPLE(dot_product)
ADD_EXAMPLE(dot_product)
ADD_EXAMPLE(matmul)
19 changes: 19 additions & 0 deletions example/intrinsics/example_matmul.f90
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
program example_matmul
use stdlib_intrinsics, only: stdlib_matmul
complex :: x(2, 2), y(2, 2)
real :: r1(50, 100), r2(100, 40), r3(40, 50)
real, allocatable :: res(:, :)
x = reshape([(0, 0), (1, 0), (1, 0), (0, 0)], [2, 2])
y = reshape([(0, 0), (0, 1), (0, -1), (0, 0)], [2, 2]) ! pauli y-matrix

print *, stdlib_matmul(y, y, y) ! should be y
print *, stdlib_matmul(x, x, y, x) ! should be -i x sigma_z

call random_seed()
call random_number(r1)
call random_number(r2)
call random_number(r3)

res = stdlib_matmul(r1, r2, r3) ! 50x50 matrix
print *, shape(res)
end program example_matmul
5 changes: 3 additions & 2 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -19,6 +19,7 @@ set(fppFiles
stdlib_hash_64bit_spookyv2.fypp
stdlib_intrinsics_dot_product.fypp
stdlib_intrinsics_sum.fypp
stdlib_intrinsics_matmul.fypp
stdlib_intrinsics.fypp
stdlib_io.fypp
stdlib_io_npy.fypp
@@ -32,14 +33,14 @@ set(fppFiles
stdlib_linalg_kronecker.fypp
stdlib_linalg_cross_product.fypp
stdlib_linalg_eigenvalues.fypp
stdlib_linalg_solve.fypp
stdlib_linalg_solve.fypp
stdlib_linalg_determinant.fypp
stdlib_linalg_qr.fypp
stdlib_linalg_inverse.fypp
stdlib_linalg_pinv.fypp
stdlib_linalg_norms.fypp
stdlib_linalg_state.fypp
stdlib_linalg_svd.fypp
stdlib_linalg_svd.fypp
stdlib_linalg_cholesky.fypp
stdlib_linalg_schur.fypp
stdlib_optval.fypp
32 changes: 32 additions & 0 deletions src/stdlib_intrinsics.fypp
Original file line number Diff line number Diff line change
@@ -8,6 +8,7 @@ module stdlib_intrinsics
!!Alternative implementations of some Fortran intrinsic functions offering either faster and/or more accurate evaluation.
!! ([Specification](../page/specs/stdlib_intrinsics.html))
use stdlib_kinds
use stdlib_linalg_state, only: linalg_state_type
implicit none
private

@@ -146,6 +147,37 @@ module stdlib_intrinsics
#:endfor
end interface
public :: kahan_kernel

interface stdlib_matmul
!! version: experimental
!!
!!### Summary
!! compute the matrix multiplication of more than two matrices with a single function call.
!! ([Specification](../page/specs/stdlib_intrinsics.html#stdlib_matmul))
!!
!!### Description
!!
!! matrix multiply more than two matrices with a single function call
!! the multiplication with the optimal parenthesization for efficiency of computation is done automatically
!! Supported data types are `real` and `complex`.
!!
!! Note: The matrices must be of compatible shapes to be multiplied
#:for k, t, s in R_KINDS_TYPES + C_KINDS_TYPES
pure module function stdlib_matmul_pure_${s}$ (m1, m2, m3, m4, m5) result(r)
${t}$, intent(in) :: m1(:,:), m2(:,:)
${t}$, intent(in), optional :: m3(:,:), m4(:,:), m5(:,:)
${t}$, allocatable :: r(:,:)
end function stdlib_matmul_pure_${s}$

module function stdlib_matmul_${s}$ (m1, m2, m3, m4, m5, err) result(r)
${t}$, intent(in) :: m1(:,:), m2(:,:)
${t}$, intent(in), optional :: m3(:,:), m4(:,:), m5(:,:)
type(linalg_state_type), intent(out) :: err
${t}$, allocatable :: r(:,:)
end function stdlib_matmul_${s}$
#:endfor
end interface stdlib_matmul
public :: stdlib_matmul

contains

Loading
Oops, something went wrong.
Loading
Oops, something went wrong.