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
dcb396c1
There was a problem fetching the pipeline summary.
Commit
dcb396c1
authored
7 years ago
by
Matt Wala
Browse files
Options
Downloads
Patches
Plain Diff
Placate flake8.
parent
fb32f55b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!66
Add support for unoptimized kernels
Pipeline
#
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/test_cse.py
+19
-19
19 additions, 19 deletions
test/test_cse.py
with
19 additions
and
19 deletions
test/test_cse.py
+
19
−
19
View file @
dcb396c1
...
@@ -173,25 +173,25 @@ def test_multiple_expressions():
...
@@ -173,25 +173,25 @@ def test_multiple_expressions():
substs
,
reduced
=
cse
([
e1
,
e2
])
substs
,
reduced
=
cse
([
e1
,
e2
])
assert
substs
==
[(
x0
,
x
+
y
)]
assert
substs
==
[(
x0
,
x
+
y
)]
assert
reduced
==
[
x0
*
z
,
x0
*
w
]
assert
reduced
==
[
x0
*
z
,
x0
*
w
]
l
=
[
w
*
x
*
y
+
z
,
w
*
y
]
l
_
=
[
w
*
x
*
y
+
z
,
w
*
y
]
substs
,
reduced
=
cse
(
l
)
substs
,
reduced
=
cse
(
l
_
)
rsubsts
,
_
=
cse
(
reversed
(
l
))
rsubsts
,
_
=
cse
(
reversed
(
l
_
))
assert
substs
==
rsubsts
assert
substs
==
rsubsts
assert
reduced
==
[
z
+
x
*
x0
,
x0
]
assert
reduced
==
[
z
+
x
*
x0
,
x0
]
l
=
[
w
*
x
*
y
,
w
*
x
*
y
+
z
,
w
*
y
]
l
_
=
[
w
*
x
*
y
,
w
*
x
*
y
+
z
,
w
*
y
]
substs
,
reduced
=
cse
(
l
)
substs
,
reduced
=
cse
(
l
_
)
rsubsts
,
_
=
cse
(
reversed
(
l
))
rsubsts
,
_
=
cse
(
reversed
(
l
_
))
assert
substs
==
rsubsts
assert
substs
==
rsubsts
assert
reduced
==
[
x1
,
x1
+
z
,
x0
]
assert
reduced
==
[
x1
,
x1
+
z
,
x0
]
f
=
Function
(
"
f
"
)
f
=
Function
(
"
f
"
)
l
=
[
f
(
x
-
z
,
y
-
z
),
x
-
z
,
y
-
z
]
l
_
=
[
f
(
x
-
z
,
y
-
z
),
x
-
z
,
y
-
z
]
substs
,
reduced
=
cse
(
l
)
substs
,
reduced
=
cse
(
l
_
)
rsubsts
,
_
=
cse
(
reversed
(
l
))
rsubsts
,
_
=
cse
(
reversed
(
l
_
))
assert
substs
==
[(
x0
,
-
z
),
(
x1
,
x
+
x0
),
(
x2
,
x0
+
y
)]
assert
substs
==
[(
x0
,
-
z
),
(
x1
,
x
+
x0
),
(
x2
,
x0
+
y
)]
assert
rsubsts
==
[(
x0
,
-
z
),
(
x1
,
x0
+
y
),
(
x2
,
x
+
x0
)]
assert
rsubsts
==
[(
x0
,
-
z
),
(
x1
,
x0
+
y
),
(
x2
,
x
+
x0
)]
assert
reduced
==
[
f
(
x1
,
x2
),
x1
,
x2
]
assert
reduced
==
[
f
(
x1
,
x2
),
x1
,
x2
]
l
=
[
w
*
y
+
w
+
x
+
y
+
z
,
w
*
x
*
y
]
l
_
=
[
w
*
y
+
w
+
x
+
y
+
z
,
w
*
x
*
y
]
assert
cse
(
l
)
==
([(
x0
,
w
*
y
)],
[
w
+
x
+
x0
+
y
+
z
,
x
*
x0
])
assert
cse
(
l
_
)
==
([(
x0
,
w
*
y
)],
[
w
+
x
+
x0
+
y
+
z
,
x
*
x0
])
assert
cse
([
x
+
y
,
x
+
y
+
z
])
==
([(
x0
,
x
+
y
)],
[
x0
,
z
+
x0
])
assert
cse
([
x
+
y
,
x
+
y
+
z
])
==
([(
x0
,
x
+
y
)],
[
x0
,
z
+
x0
])
assert
cse
([
x
+
y
,
x
+
z
])
==
([],
[
x
+
y
,
x
+
z
])
assert
cse
([
x
+
y
,
x
+
z
])
==
([],
[
x
+
y
,
x
+
z
])
assert
cse
([
x
*
y
,
z
+
x
*
y
,
x
*
y
*
z
+
3
])
==
\
assert
cse
([
x
*
y
,
z
+
x
*
y
,
x
*
y
*
z
+
3
])
==
\
...
@@ -302,24 +302,24 @@ def test_Piecewise(): # noqa
...
@@ -302,24 +302,24 @@ def test_Piecewise(): # noqa
def
test_name_conflict
():
def
test_name_conflict
():
z1
=
x0
+
y
z1
=
x0
+
y
z2
=
x2
+
x3
z2
=
x2
+
x3
l
=
[
cos
(
z1
)
+
z1
,
cos
(
z2
)
+
z2
,
x0
+
x2
]
l
_
=
[
cos
(
z1
)
+
z1
,
cos
(
z2
)
+
z2
,
x0
+
x2
]
substs
,
reduced
=
cse
(
l
)
substs
,
reduced
=
cse
(
l
_
)
assert
[
e
.
subs
(
dict
(
substs
))
for
e
in
reduced
]
==
l
assert
[
e
.
subs
(
dict
(
substs
))
for
e
in
reduced
]
==
l
_
def
test_name_conflict_cust_symbols
():
def
test_name_conflict_cust_symbols
():
z1
=
x0
+
y
z1
=
x0
+
y
z2
=
x2
+
x3
z2
=
x2
+
x3
l
=
[
cos
(
z1
)
+
z1
,
cos
(
z2
)
+
z2
,
x0
+
x2
]
l
_
=
[
cos
(
z1
)
+
z1
,
cos
(
z2
)
+
z2
,
x0
+
x2
]
substs
,
reduced
=
cse
(
l
,
symbols
(
"
x:10
"
))
substs
,
reduced
=
cse
(
l
_
,
symbols
(
"
x:10
"
))
assert
[
e
.
subs
(
dict
(
substs
))
for
e
in
reduced
]
==
l
assert
[
e
.
subs
(
dict
(
substs
))
for
e
in
reduced
]
==
l
_
def
test_symbols_exhausted_error
():
def
test_symbols_exhausted_error
():
l
=
cos
(
x
+
y
)
+
x
+
y
+
cos
(
w
+
y
)
+
sin
(
w
+
y
)
l
_
=
cos
(
x
+
y
)
+
x
+
y
+
cos
(
w
+
y
)
+
sin
(
w
+
y
)
sym
=
[
x
,
y
,
z
]
sym
=
[
x
,
y
,
z
]
with
pytest
.
raises
(
ValueError
):
with
pytest
.
raises
(
ValueError
):
print
(
cse
(
l
,
symbols
=
sym
))
print
(
cse
(
l
_
,
symbols
=
sym
))
@sympyonly
@sympyonly
...
...
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