Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-codegen
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Christian Heinigk
dune-codegen
Commits
1500366b
Commit
1500366b
authored
7 years ago
by
Dominic Kempf
Browse files
Options
Downloads
Patches
Plain Diff
Remove noop greedy implementation
will be superseded by our actual model anyway.
parent
402f9e8c
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
python/dune/perftool/options.py
+1
-1
1 addition, 1 deletion
python/dune/perftool/options.py
python/dune/perftool/sumfact/vectorization.py
+0
-5
0 additions, 5 deletions
python/dune/perftool/sumfact/vectorization.py
with
1 addition
and
6 deletions
python/dune/perftool/options.py
+
1
−
1
View file @
1500366b
...
@@ -55,7 +55,7 @@ class PerftoolOptionsArray(ImmutableRecord):
...
@@ -55,7 +55,7 @@ class PerftoolOptionsArray(ImmutableRecord):
fastdg
=
PerftoolOption
(
default
=
False
,
helpstr
=
"
Use FastDGGridOperator from PDELab.
"
)
fastdg
=
PerftoolOption
(
default
=
False
,
helpstr
=
"
Use FastDGGridOperator from PDELab.
"
)
sumfact
=
PerftoolOption
(
default
=
False
,
helpstr
=
"
Use sumfactorization
"
)
sumfact
=
PerftoolOption
(
default
=
False
,
helpstr
=
"
Use sumfactorization
"
)
vectorization_quadloop
=
PerftoolOption
(
default
=
False
,
helpstr
=
"
whether to generate code with explicit vectorization
"
)
vectorization_quadloop
=
PerftoolOption
(
default
=
False
,
helpstr
=
"
whether to generate code with explicit vectorization
"
)
vectorization_strategy
=
PerftoolOption
(
default
=
"
none
"
,
helpstr
=
"
The identifier of the vectorization cost model
"
)
vectorization_strategy
=
PerftoolOption
(
default
=
"
none
"
,
helpstr
=
"
The identifier of the vectorization cost model
. Possible values: none|explicit
"
)
vectorization_horizontal
=
PerftoolOption
(
default
=
None
,
helpstr
=
"
an explicit value for horizontal vectorization read by the
'
explicit
'
strategy
"
)
vectorization_horizontal
=
PerftoolOption
(
default
=
None
,
helpstr
=
"
an explicit value for horizontal vectorization read by the
'
explicit
'
strategy
"
)
vectorization_vertical
=
PerftoolOption
(
default
=
None
,
helpstr
=
"
an explicit value for vertical vectorization read by the
'
explicit
'
strategy
"
)
vectorization_vertical
=
PerftoolOption
(
default
=
None
,
helpstr
=
"
an explicit value for vertical vectorization read by the
'
explicit
'
strategy
"
)
vectorization_padding
=
PerftoolOption
(
default
=
None
,
helpstr
=
"
an explicit value for the allowed padding in vectorization
"
)
vectorization_padding
=
PerftoolOption
(
default
=
None
,
helpstr
=
"
an explicit value for the allowed padding in vectorization
"
)
...
...
This diff is collapsed.
Click to expand it.
python/dune/perftool/sumfact/vectorization.py
+
0
−
5
View file @
1500366b
...
@@ -51,11 +51,6 @@ def attach_vectorization_info(sf):
...
@@ -51,11 +51,6 @@ def attach_vectorization_info(sf):
return
_cache_vectorization_info
(
sf
,
None
)
return
_cache_vectorization_info
(
sf
,
None
)
@backend
(
interface
=
"
vectorization_strategy
"
,
name
=
"
greedy
"
)
def
greedy_costfunction
(
sf
):
return
1
@backend
(
interface
=
"
vectorization_strategy
"
,
name
=
"
explicit
"
)
@backend
(
interface
=
"
vectorization_strategy
"
,
name
=
"
explicit
"
)
def
explicit_costfunction
(
sf
):
def
explicit_costfunction
(
sf
):
# Read the explicitly set values for horizontal and vertical vectorization
# Read the explicitly set values for horizontal and vertical vectorization
...
...
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