Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
sumpy
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
sumpy
Commits
827977d9
Commit
827977d9
authored
6 years ago
by
Isuru Fernando
Browse files
Options
Downloads
Patches
Plain Diff
get flop count after doing cse and killing trivial assignments
parent
1e607cb6
No related branches found
No related tags found
1 merge request
!81
Add benchmarks for translations
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
benchmarks/bench_translations.py
+13
-2
13 additions, 2 deletions
benchmarks/bench_translations.py
with
13 additions
and
2 deletions
benchmarks/bench_translations.py
+
13
−
2
View file @
827977d9
...
...
@@ -22,8 +22,12 @@ import logging
logger
=
logging
.
getLogger
(
__name__
)
import
sympy
import
sumpy.symbolic
as
sym
import
six
import
pymbolic.mapper.flop_counter
import
sumpy.symbolic
as
sym
from
sumpy.assignment_collection
import
SymbolicAssignmentCollection
from
sumpy.codegen
import
to_loopy_insns
class
Param
:
def
__init__
(
self
,
knl
,
local_expn_class
,
mpole_expn_class
):
...
...
@@ -66,6 +70,13 @@ class TranslationSuite:
tgt_rscale
=
sym
.
Symbol
(
"
tgt_rscale
"
)
result
=
l_expn
.
translate_from
(
m_expn
,
src_coeff_exprs
,
src_rscale
,
dvec
,
tgt_rscale
)
return
sympy
.
count_ops
(
result
)
sac
=
SymbolicAssignmentCollection
()
for
i
,
expr
in
enumerate
(
result
):
sac
.
assign_unique
(
"
coeff%d
"
%
i
,
expr
)
sac
.
run_global_cse
()
insns
=
to_loopy_insns
(
six
.
iteritems
(
sac
.
assignments
))
counter
=
pymbolic
.
mapper
.
flop_counter
.
FlopCounter
()
return
sum
([
counter
.
rec
(
insn
.
expression
)
for
insn
in
insns
])
track_m2l_op_count
.
unit
=
"
ops
"
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