matmul Interface

public interface matmul

Functions

private module function matmul_arrays(a, b) result(c)

Arguments

Type IntentOptional Attributes Name
class(array_type), intent(in), target :: a
class(array_type), intent(in), target :: b

Return Value type(array_type), pointer

private module function matmul_real2d(a, b) result(c)

Arguments

Type IntentOptional Attributes Name
class(array_type), intent(in), target :: a
real(kind=real32), intent(in), dimension(:,:) :: b

Return Value type(array_type), pointer

private module function real2d_matmul(a, b) result(c)

Arguments

Type IntentOptional Attributes Name
real(kind=real32), intent(in), dimension(:,:) :: a
class(array_type), intent(in), target :: b

Return Value type(array_type), pointer