This repository has been archived by the owner on Oct 3, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
matrix_routines.f90
820 lines (625 loc) · 23 KB
/
matrix_routines.f90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
module matrix_routines
use types
use utils
implicit none
private
public :: diagonal, eye, kronecker
public :: triangular_lower, triangular_upper
public :: gemm_n, gemm_order
interface diagonal !{{{
module procedure i_diagonal_create
module procedure s_diagonal_create
module procedure d_diagonal_create
module procedure q_diagonal_create
module procedure i_diagonal_extract
module procedure s_diagonal_extract
module procedure d_diagonal_extract
module procedure q_diagonal_extract
end interface diagonal !}}}
interface kronecker !{{{
module procedure i_kronecker
module procedure s_kronecker
module procedure d_kronecker
module procedure q_kronecker
end interface kronecker !}}}
interface triangular_upper !{{{
module procedure i_triangular_upper
module procedure s_triangular_upper
module procedure d_triangular_upper
module procedure q_triangular_upper
end interface triangular_upper !}}}
interface triangular_lower !{{{
module procedure i_triangular_lower
module procedure s_triangular_lower
module procedure d_triangular_lower
module procedure q_triangular_lower
end interface triangular_lower !}}}
interface gemm_n !{{{
module procedure sgemm_n
module procedure dgemm_n
end interface gemm_n !}}}
interface gemm_order !{{{
module procedure sgemm_order
module procedure dgemm_order
end interface gemm_order !}}}
contains
! diagonal {{{
! create diagonal {{{
pure function i_diagonal_create(d) result(m) !{{{
integer, dimension(:), intent(in) :: d
integer, dimension(:,:), allocatable :: m
integer :: i,n
n = size(d)
allocate(m(n,n))
m = 0
do i=1,n
m(i,i) = d(i)
end do
end function i_diagonal_create !}}}
pure function s_diagonal_create(d) result(m) !{{{
real(sp), dimension(:), intent(in) :: d
real(sp), dimension(:,:), allocatable :: m
integer :: i,n
n = size(d)
allocate(m(n,n))
m = 0.0
do i=1,n
m(i,i) = d(i)
end do
end function s_diagonal_create !}}}
pure function d_diagonal_create(d) result(m) !{{{
real(dp), dimension(:), intent(in) :: d
real(dp), dimension(:,:), allocatable :: m
integer :: i,n
n = size(d)
allocate(m(n,n))
m = 0.0
do i=1,n
m(i,i) = d(i)
end do
end function d_diagonal_create !}}}
pure function q_diagonal_create(d) result(m) !{{{
real(qp), dimension(:), intent(in) :: d
real(qp), dimension(:,:), allocatable :: m
integer :: i,n
n = size(d)
allocate(m(n,n))
m = 0.0
do i=1,n
m(i,i) = d(i)
end do
end function q_diagonal_create !}}}
!}}}
! extract diagonal {{{
pure function i_diagonal_extract(m,offset) result(d) !{{{
integer, dimension(:,:), intent(in) :: m
integer, intent(in), optional :: offset
integer, dimension(:), allocatable :: d, sh
integer :: i,l,n,os,u
l = 1
os = 0
if (present(offset)) then
os = offset
end if
sh = shape(m)
n = min(sh(1),sh(2))
!allocate(d(n))
u = n
if (abs(os) < n) then
if (os > 0) then
u = n - os
else if (offset < 0) then
l = 1 - os
end if
end if
n = u-(l-1)
allocate(d(n))
d = 0
do i=1, u
d(i) = m(i+os,i+os)
end do
end function i_diagonal_extract !}}}
pure function s_diagonal_extract(m) result(d) !{{{
real(sp), dimension(:,:), intent(in) :: m
real(sp), dimension(:), allocatable :: d
integer, dimension(:), allocatable :: sh
integer :: i,n
sh = shape(m)
n = min(sh(1),sh(2))
allocate(d(n))
d = 0.0
do i=1,n
d(i) = m(i,i)
end do
end function s_diagonal_extract !}}}
pure function d_diagonal_extract(m) result(d) !{{{
real(dp), dimension(:,:), intent(in) :: m
real(dp), dimension(:), allocatable :: d
integer, dimension(:), allocatable :: sh
integer :: i,n
sh = shape(m)
n = min(sh(1),sh(2))
allocate(d(n))
d = 0.0
do i=1,n
d(i) = m(i,i)
end do
end function d_diagonal_extract !}}}
pure function q_diagonal_extract(m) result(d) !{{{
real(qp), dimension(:,:), intent(in) :: m
real(qp), dimension(:), allocatable :: d
integer, dimension(:), allocatable :: sh
integer :: i,n
sh = shape(m)
n = min(sh(1),sh(2))
allocate(d(n))
d = 0.0
do i=1,n
d(i) = m(i,i)
end do
end function q_diagonal_extract !}}}
!}}}
!}}}
pure function eye(n,offset) result(um) !{{{
integer, intent(in) :: n
integer, intent(in), optional :: offset
integer, dimension(n,n) :: um
integer :: i, l, u, os
um = 0
l = 1
u = n
os = 0
if (present(offset)) then
os = offset
end if
if (abs(os) < n) then
if (os > 0) then
u = n - os
else if (os < 0) then
l = 1 - os
end if
do i=l, u
um(i, i+os) = 1
end do
end if
end function eye !}}}
! kronecker {{{
pure function i_kronecker(a,b) result(k) !{{{
integer, dimension(:,:), intent(in) :: a, b
integer, dimension(:), allocatable :: shape_a, shape_b
integer :: nx, ny
integer :: i,j
integer :: x_low, x_upp, y_low, y_upp
integer, dimension(:,:), allocatable :: k
shape_a = shape(a)
shape_b = shape(b)
nx = shape_a(1) * shape_b(1)
ny = shape_a(2) * shape_b(2)
allocate(k(nx,ny))
do j=1,shape_a(2)
do i=1,shape_a(1)
x_low = (i-1)*shape_b(1) + 1
x_upp = i*shape_b(1)
y_low = (j-1)*shape_b(2) + 1
y_upp = j*shape_b(2)
k(x_low:x_upp,y_low:y_upp) = a(i,j) * b
end do
end do
end function i_kronecker !}}}
pure function s_kronecker(a,b) result(k) !{{{
real(sp), dimension(:,:), intent(in) :: a, b
integer, dimension(:), allocatable :: shape_a, shape_b
integer :: nx, ny
integer :: i,j
integer :: x_low, x_upp, y_low, y_upp
real(sp), dimension(:,:), allocatable :: k
shape_a = shape(a)
shape_b = shape(b)
nx = shape_a(1) * shape_b(1)
ny = shape_a(2) * shape_b(2)
allocate(k(nx,ny))
do j=1,shape_a(2)
do i=1,shape_a(1)
x_low = (i-1)*shape_b(1) + 1
x_upp = i*shape_b(1)
y_low = (j-1)*shape_b(2) + 1
y_upp = j*shape_b(2)
k(x_low:x_upp,y_low:y_upp) = a(i,j) * b
end do
end do
end function s_kronecker !}}}
pure function d_kronecker(a,b) result(k) !{{{
real(dp), dimension(:,:), intent(in) :: a, b
integer, dimension(:), allocatable :: shape_a, shape_b
integer :: nx, ny
integer :: i,j
integer :: x_low, x_upp, y_low, y_upp
real(dp), dimension(:,:), allocatable :: k
shape_a = shape(a)
shape_b = shape(b)
nx = shape_a(1) * shape_b(1)
ny = shape_a(2) * shape_b(2)
allocate(k(nx,ny))
do j=1,shape_a(2)
do i=1,shape_a(1)
x_low = (i-1)*shape_b(1) + 1
x_upp = i*shape_b(1)
y_low = (j-1)*shape_b(2) + 1
y_upp = j*shape_b(2)
k(x_low:x_upp,y_low:y_upp) = a(i,j) * b
end do
end do
end function d_kronecker !}}}
pure function q_kronecker(a,b) result(k) !{{{
real(qp), dimension(:,:), intent(in) :: a, b
integer, dimension(:), allocatable :: shape_a, shape_b
integer :: nx, ny
integer :: i,j
integer :: x_low, x_upp, y_low, y_upp
real(qp), dimension(:,:), allocatable :: k
shape_a = shape(a)
shape_b = shape(b)
nx = shape_a(1) * shape_b(1)
ny = shape_a(2) * shape_b(2)
allocate(k(nx,ny))
do j=1,shape_a(2)
do i=1,shape_a(1)
x_low = (i-1)*shape_b(1) + 1
x_upp = i*shape_b(1)
y_low = (j-1)*shape_b(2) + 1
y_upp = j*shape_b(2)
k(x_low:x_upp,y_low:y_upp) = a(i,j) * b
end do
end do
end function q_kronecker !}}}
!}}}
! triangular_upper {{{
pure function i_triangular_upper(a,offset) result(r) !{{{
integer, dimension(:,:), intent(in) :: a
integer, intent(in), optional :: offset
integer :: os
real(sp), dimension(:,:), allocatable :: r
integer, dimension(:), allocatable :: sh
integer :: i, j, lim, m, n, mn
os = 0
if (present(offset)) then
os = offset
end if
sh = shape(a)
m = sh(1)
n = sh(2)
! This is currently broken in gfortran 4.9
!allocate(r,source=m)
! Workaround:
! The statement r=m requires -standard-semantics in ifort as of 15.*
!allocate(r(sh(1), sh(2)))
allocate(r(m,n))
r = 0
mn = min(sh(1),sh(2))
if (os >= 0) then
do j = 1+os, n
lim = min(j,mn)
do i = 1, lim
r(i,j) = a(i,j)
end do
end do
else if (os < 0) then
do j = 1, n
lim = min(j+abs(os),m)
do i = 1, lim
r(i,j) = a(i,j)
end do
end do
end if
end function i_triangular_upper !}}}
pure function s_triangular_upper(a,offset) result(r) !{{{
real(sp), dimension(:,:), intent(in) :: a
integer, intent(in), optional :: offset
integer :: os
real(sp), dimension(:,:), allocatable :: r
integer, dimension(:), allocatable :: sh
integer :: i, j, lim, m, n, mn
os = 0
if (present(offset)) then
os = offset
end if
sh = shape(a)
m = sh(1)
n = sh(2)
! This is currently broken in gfortran 4.9
!allocate(r,source=m)
! Workaround:
! The statement r=m requires -standard-semantics in ifort as of 15.*
!allocate(r(sh(1), sh(2)))
allocate(r(m,n))
r = 0.0
mn = min(sh(1),sh(2))
if (os >= 0) then
do j = 1+os, n
lim = min(j,mn)
do i = 1, lim
r(i,j) = a(i,j)
end do
end do
else if (os < 0) then
do j = 1, n
lim = min(j+abs(os),m)
do i = 1, lim
r(i,j) = a(i,j)
end do
end do
end if
end function s_triangular_upper !}}}
pure function d_triangular_upper(a,offset) result(r) !{{{
real(dp), dimension(:,:), intent(in) :: a
integer, intent(in), optional :: offset
integer :: os
real(dp), dimension(:,:), allocatable :: r
integer, dimension(:), allocatable :: sh
integer :: i, j, lim, m, n, mn
os = 0
if (present(offset)) then
os = offset
end if
sh = shape(a)
m = sh(1)
n = sh(2)
! This is currently broken in gfortran 4.9
!allocate(r,source=m)
! Workaround:
! The statement r=m requires -standard-semantics in ifort as of 15.*
!allocate(r(sh(1), sh(2)))
allocate(r(m,n))
r = 0.0
mn = min(sh(1),sh(2))
if (os >= 0) then
do j = 1+os, n
lim = min(j-os,mn)
do i = 1, lim
r(i,j) = a(i,j)
end do
end do
else if (os < 0) then
do j = 1, n
lim = min(j+abs(os),m)
do i = 1, lim
r(i,j) = a(i,j)
end do
end do
end if
end function d_triangular_upper !}}}
pure function q_triangular_upper(a,offset) result(r) !{{{
real(qp), dimension(:,:), intent(in) :: a
integer, intent(in), optional :: offset
integer :: os
real(qp), dimension(:,:), allocatable :: r
integer, dimension(:), allocatable :: sh
integer :: i, j, lim, m, n, mn
os = 0
if (present(offset)) then
os = offset
end if
sh = shape(a)
m = sh(1)
n = sh(2)
! This is currently broken in gfortran 4.9
!allocate(r,source=m)
! Workaround:
! The statement r=m requires -standard-semantics in ifort as of 15.*
!allocate(r(sh(1), sh(2)))
allocate(r(m,n))
r = 0.0
mn = min(sh(1),sh(2))
if (os >= 0) then
do j = 1+os, n
lim = min(j,mn)
do i = 1, lim
r(i,j) = a(i,j)
end do
end do
else if (os < 0) then
do j = 1, n
lim = min(j+abs(os),m)
do i = 1, lim
r(i,j) = a(i,j)
end do
end do
end if
end function q_triangular_upper !}}}
!}}}
! triangular_lower {{{
pure function i_triangular_lower(m) result(l) !{{{
integer, dimension(:,:), intent(in) :: m
integer, dimension(:,:), allocatable :: l
integer, dimension(:), allocatable :: sh
integer :: i, j, lim
sh = shape(m)
! This is currently broken in gfortran 4.9
!allocate(l,source=m)
! Workaround:
! The statement l=m requires -standard-semantics in ifort as of 15.*
!allocate(l(sh(1), sh(2)))
l = m
lim = min(sh(1),sh(2))
do j = 1, lim
do i = 1, j-1
l(i,j) = 0.0
end do
end do
end function i_triangular_lower !}}}
pure function s_triangular_lower(m) result(l) !{{{
real(sp), dimension(:,:), intent(in) :: m
real(sp), dimension(:,:), allocatable :: l
integer, dimension(:), allocatable :: sh
integer :: i, j, lim
sh = shape(m)
! This is currently broken in gfortran 4.9
!allocate(l,source=m)
! Workaround:
! The statement l=m requires -standard-semantics in ifort as of 15.*
!allocate(l(sh(1), sh(2)))
l = m
lim = min(sh(1),sh(2))
do j = 1, lim
do i = 1, j-1
l(i,j) = 0.0
end do
end do
end function s_triangular_lower !}}}
pure function d_triangular_lower(m) result(l) !{{{
real(dp), dimension(:,:), intent(in) :: m
real(dp), dimension(:,:), allocatable :: l
integer, dimension(:), allocatable :: sh
integer :: i, j, lim
sh = shape(m)
! This is currently broken in gfortran 4.9
!allocate(l,source=m)
! Workaround:
! The statement l=m requires -standard-semantics in ifort as of 15.*
!allocate(l(sh(1), sh(2)))
l = m
lim = min(sh(1),sh(2))
do j = 1, lim
do i = 1, j-1
l(i,j) = 0.0
end do
end do
end function d_triangular_lower !}}}
pure function q_triangular_lower(m) result(l) !{{{
real(qp), dimension(:,:), intent(in) :: m
real(qp), dimension(:,:), allocatable :: l
integer, dimension(:), allocatable :: sh
integer :: i, j, lim
sh = shape(m)
! This is currently broken in gfortran 4.9
!allocate(l,source=m)
! Workaround:
! The statement l=m requires -standard-semantics in ifort as of 15.*
!allocate(l(sh(1), sh(2)))
l = m
lim = min(sh(1),sh(2))
do j = 1, lim
do i = 1, j-1
l(i,j) = 0.0
end do
end do
end function q_triangular_lower !}}}
!}}}
! gemm_n {{{
subroutine sgemm_n(m,ms) !{{{
real(sp), dimension(:,:), intent(inout) :: m
real(sp), dimension(:,:,:), intent(in) :: ms
real(sp), dimension(:,:), allocatable :: work
integer, dimension(2) :: sh_m
integer, dimension(3) :: sh_ms
integer :: i
integer :: rows, columns, n_arrays
sh_m = shape(m)
rows = sh_m(1)
columns = sh_m(2)
sh_ms = shape(ms)
if (rows /= columns) then
call stop_error("sgemm_n: non-quadratic matrices passed.")
else if (rows /= sh_ms(1)) then
call stop_error("sgemm_n: row dimension of matrix does not agree with matrices")
else if (columns /= sh_ms(2)) then
call stop_error("sgemm_n: columns dimension of matrix does not agree with matrices")
else
n_arrays = sh_ms(3)
allocate(work(rows,columns))
do i=1, n_arrays ! call to gemm, such that work = work * ms(1) * ms(2) ... ms(n)
call sgemm ('n', 'n', rows, columns, rows, 1.0, m, rows, ms(:,:,i), rows, 0.0, work, rows)
m = work
end do
end if
end subroutine sgemm_n !}}}
subroutine dgemm_n(m,ms) !{{{
real(dp), dimension(:,:), intent(inout) :: m
real(dp), dimension(:,:,:), intent(in) :: ms
real(dp), dimension(:,:), allocatable :: work
integer, dimension(2) :: sh_m
integer, dimension(3) :: sh_ms
integer :: i
integer :: rows, columns, n_arrays
sh_m = shape(m)
rows = sh_m(1)
columns = sh_m(2)
sh_ms = shape(ms)
if (rows /= columns) then
call stop_error("dgemm_n: non-quadratic matrices passed.")
else if (rows /= sh_ms(1)) then
call stop_error("dgemm_n: row dimension of matrix does not agree with matrices")
else if (columns /= sh_ms(2)) then
call stop_error("dgemm_n: columns dimension of matrix does not agree with matrices")
else
n_arrays = sh_ms(3)
allocate(work(rows,columns))
do i=1, n_arrays
! call to gemm, such that work = work * ms(1) * ms(2) ... ms(n)
call dgemm ('n', 'n', rows, columns, rows, 1.0, m, rows, ms(:,:,i), rows, 0.0, work, rows)
m = work
end do
end if
end subroutine dgemm_n !}}}
!}}}
! gemm_order {{{
subroutine sgemm_order(m,ms,order) !{{{
real(sp), dimension(:,:), intent(inout) :: m
real(sp), dimension(:,:,:), intent(in) :: ms
integer, dimension(:), intent(in) :: order
real(sp), dimension(:,:), allocatable :: work
integer, dimension(2) :: sh_m
integer, dimension(3) :: sh_ms
integer :: i,o
integer :: rows, columns
o = size(order)
sh_m = shape(m)
rows = sh_m(1)
columns = sh_m(2)
sh_ms = shape(ms)
if (rows /= columns) then
call stop_error("dgemm_n: non-quadratic matrices passed.")
else if (rows /= sh_ms(1)) then
call stop_error("dgemm_n: row dimension of matrix does not agree with matrices")
else if (columns /= sh_ms(2)) then
call stop_error("dgemm_n: columns dimension of matrix does not agree with matrices")
else
allocate(work(rows,columns))
do i=1, o
! call to gemm, such that work = work * ms(1) * ms(2) ... ms(n)
call dgemm ('n', 'n', rows, columns, rows, 1.0, m, rows, ms(:,:,i), rows, 0.0, work, rows)
m = work
end do
end if
end subroutine sgemm_order !}}}
subroutine dgemm_order(m,ms,order) !{{{
real(dp), dimension(:,:), intent(inout) :: m
real(dp), dimension(:,:,:), intent(in) :: ms
integer, dimension(:), intent(in) :: order
real(dp), dimension(:,:), allocatable :: work
integer, dimension(2) :: sh_m
integer, dimension(3) :: sh_ms
integer :: i,o
integer :: rows, columns
o = size(order)
sh_m = shape(m)
rows = sh_m(1)
columns = sh_m(2)
sh_ms = shape(ms)
if (rows /= columns) then
call stop_error("dgemm_n: non-quadratic matrices passed.")
else if (rows /= sh_ms(1)) then
call stop_error("dgemm_n: row dimension of matrix does not agree with matrices")
else if (columns /= sh_ms(2)) then
call stop_error("dgemm_n: columns dimension of matrix does not agree with matrices")
else
allocate(work(rows,columns))
do i=1, o
! call to gemm, such that work = work * ms(1) * ms(2) ... ms(n)
call dgemm ('n', 'n', rows, columns, rows, 1.0, m, rows, ms(:,:,i), rows, 0.0, work, rows)
m = work
end do
end if
end subroutine dgemm_order !}}}
! }}}
end module matrix_routines