repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
pr81464.f90
blob
425cae9470c435f4684bdd4e79b694f65f23dbee
1
! { dg-do compile }
2
! { dg-options "--param parloops-chunk-size=2 -ftree-parallelize-loops=2 -O1" }
3
4
program
main
5
implicit none
6
real
,
dimension
(:,:),
allocatable
::
a
,
b
,
c
7
real
::
sm
8
9
allocate
(
a
(
2
,
2
),
b
(
2
,
2
),
c
(
2
,
2
))
10
11
call
random_number
(
a
)
12
call
random_number
(
b
)
13
14
c
=
matmul
(
a
,
b
)
15
sm
=
sum
(
c
)
16
17
deallocate
(
a
,
b
,
c
)
18
19
end program
main