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
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pycodegen
pystencils
Commits
b91944e2
Commit
b91944e2
authored
10 months ago
by
Frederik Hennig
Browse files
Options
Downloads
Plain Diff
Merge branch 'v2.0-dev' into fhennig/migrate-tests
parents
cf241efc
0c86a9b6
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!409
Migrate Test Suite
Pipeline
#67881
passed
10 months ago
Stage: Code Quality
Stage: Unit Tests
Stage: legacy_test
Stage: docs
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/pystencils/bit_masks.py
+9
-0
9 additions, 0 deletions
src/pystencils/bit_masks.py
src/pystencils/typing.py
+11
-0
11 additions, 0 deletions
src/pystencils/typing.py
with
20 additions
and
0 deletions
src/pystencils/bit_masks.py
0 → 100644
+
9
−
0
View file @
b91944e2
from
.sympyextensions.bit_masks
import
flag_cond
as
_flag_cond
from
warnings
import
warn
warn
(
"
Importing the `pystencils.bit_masks` module is deprecated.
"
"
Import `flag_cond` from `pystencils.sympyextensions` instead.
"
)
flag_cond
=
_flag_cond
This diff is collapsed.
Click to expand it.
src/pystencils/typing.py
0 → 100644
+
11
−
0
View file @
b91944e2
from
.sympyextensions
import
TypedSymbol
as
_TypedSymbol
from
.types
import
create_type
as
_create_type
from
warnings
import
warn
warn
(
"
Importing `TypedSymbol` and `create_type` from `pystencils.typing` is deprecated.
"
"
Import from `pystencils` instead.
"
)
TypedSymbol
=
_TypedSymbol
create_type
=
_create_type
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