Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
pystencils
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
Package registry
Model registry
Operate
Environments
Terraform modules
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hyteg
pystencils
Commits
35545840
Commit
35545840
authored
1 year ago
by
Daniel Bauer
Browse files
Options
Downloads
Patches
Plain Diff
add regression test for typing of constants issue (fails on this commit)
parent
fb564ac5
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
tests/nbackend/kernelcreation/test_typification.py
+11
-0
11 additions, 0 deletions
tests/nbackend/kernelcreation/test_typification.py
with
11 additions
and
0 deletions
tests/nbackend/kernelcreation/test_typification.py
+
11
−
0
View file @
35545840
...
...
@@ -182,3 +182,14 @@ def test_typify_integer_binops_in_floating_context():
with
pytest
.
raises
(
TypificationError
):
expr
=
typify
(
expr
)
def
test_regression_typify_constants
():
ctx
=
KernelCreationContext
(
default_dtype
=
Fp
(
32
))
freeze
=
FreezeExpressions
(
ctx
)
typify
=
Typifier
(
ctx
)
x
,
y
=
sp
.
symbols
(
"
x, y
"
)
expr
=
(
-
x
-
y
)
**
2
typify
(
freeze
(
expr
))
# just test that no error is raised
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