Skip to content

Commit 2a82186

Browse files
committed
Commit after successful build.
1 parent a85310b commit 2a82186

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

src/tests/linalg/test_linalg.f90

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ program test_linalg
22

33
use stdlib_error, only: check
44
use stdlib_kinds, only: sp, dp, qp, int8, int16, int32, int64
5-
use stdlib_linalg, only: diag, eye, trace
5+
use stdlib_linalg, only: diag, eye, trace, outer_product
66

77
implicit none
88

@@ -56,6 +56,24 @@ program test_linalg
5656
call test_trace_int32
5757
call test_trace_int64
5858

59+
!
60+
! outer product
61+
!
62+
!commented until outer_product compiles
63+
!call test_outer_product_rsp
64+
!call test_outer_product_rsp_k
65+
!call test_outer_product_rdp
66+
!call test_outer_product_rqp
67+
68+
!call test_outer_product_csp
69+
!call test_outer_product_cdp
70+
!call test_outer_product_cqp
71+
72+
!call test_outer_product_int8
73+
!call test_outer_product_int16
74+
!call test_outer_product_int32
75+
!call test_outer_product_int64
76+
5977

6078
contains
6179

0 commit comments

Comments
 (0)