Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pymbolic
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
Kaushik Kulkarni
pymbolic
Commits
19e1f9af
Commit
19e1f9af
authored
11 years ago
by
Andreas Klöckner
Browse files
Options
Downloads
Patches
Plain Diff
Move PersistentHashWalkMapper from loopy
parent
0a258931
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
pymbolic/mapper/persistent_hash.py
+47
-0
47 additions, 0 deletions
pymbolic/mapper/persistent_hash.py
with
47 additions
and
0 deletions
pymbolic/mapper/persistent_hash.py
0 → 100644
+
47
−
0
View file @
19e1f9af
from
__future__
import
division
__copyright__
=
"
Copyright (C) 2009-2013 Andreas Kloeckner
"
__license__
=
"""
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the
"
Software
"
), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED
"
AS IS
"
, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
"""
from
pymbolic.mapper
import
WalkMapper
class
PersistentHashWalkMapper
(
WalkMapper
):
"""
A subclass of :class:`loopy.symbolic.WalkMapper` for constructing
persistent hash keys for use with
:class:`pytools.persistent_dict.PersistentDict`.
See also :meth:`LoopyKeyBuilder.update_for_pymbolic_expression`.
"""
def
__init__
(
self
,
key_hash
):
self
.
key_hash
=
key_hash
def
visit
(
self
,
expr
):
self
.
key_hash
.
update
(
type
(
expr
).
__name__
.
encode
(
"
utf8
"
))
def
map_variable
(
self
,
expr
):
self
.
key_hash
.
update
(
expr
.
name
.
encode
(
"
utf8
"
))
def
map_constant
(
self
,
expr
):
self
.
key_hash
.
update
(
repr
(
expr
).
encode
(
"
utf8
"
))
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