2 ! { dg-options "-finline-matmul-limit=0" }
3 ! Stress-test the matmul blocking code with sizes close to or
4 ! equal to powers ot two.
8 integer, dimension(*), parameter :: nn
= &
9 & [2,3,4,5, 7,8,9, 15,16,17, 31,32,33, 63,64,65, &
10 127 ,228,129, 255,256,257];
11 integer, parameter :: s
= size(nn
)
12 real, dimension(:,:),allocatable
:: a
, b
, c
14 integer :: nx
, ny
, count
24 allocate (a(nx
,ny
), b(ny
,count
), c(nx
,count
))