Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
loopy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Andreas Klöckner
loopy
Commits
730c3d97
Commit
730c3d97
authored
10 years ago
by
Andreas Klöckner
Browse files
Options
Downloads
Patches
Plain Diff
Add test_tagged in Fortran tests
parent
7d8759c5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/test_fortran.py
+29
-0
29 additions, 0 deletions
test/test_fortran.py
with
29 additions
and
0 deletions
test/test_fortran.py
+
29
−
0
View file @
730c3d97
...
...
@@ -241,6 +241,35 @@ def test_if(ctx_factory):
lp
.
auto_test_vs_ref
(
ref_knl
,
ctx
,
knl
,
parameters
=
dict
(
n
=
5
))
def
test_tagged
(
ctx_factory
):
fortran_src
=
"""
subroutine rot_norm(out, alpha, out2, inp, inp2, n)
implicit none
real*8 a, b, r, out(n), out2(n), inp(n), inp2(n)
real*8 alpha
integer n
do i = 1, n
!$loopy begin tagged: input
a = cos(alpha)*inp(i) + sin(alpha)*inp2(i)
b = -sin(alpha)*inp(i) + cos(alpha)*inp2(i)
!$loopy end tagged: input
r = sqrt(a**2 + b**2)
a = a/r
b = b/r
out(i) = a
out2(i) = b
end do
end
"""
from
loopy.frontend.fortran
import
f2loopy
knl
,
=
f2loopy
(
fortran_src
)
assert
sum
(
1
for
insn
in
lp
.
find_instructions
(
knl
,
"
*$input
"
))
==
2
if
__name__
==
"
__main__
"
:
if
len
(
sys
.
argv
)
>
1
:
exec
(
sys
.
argv
[
1
])
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment