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
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pycodegen
pystencils
Commits
6eac2f4f
Commit
6eac2f4f
authored
Sep 15, 2023
by
Markus Holzer
Browse files
Options
Downloads
Patches
Plain Diff
Fix linter
parent
09d0cce8
No related branches found
No related tags found
1 merge request
!353
Draft: Generalise usage of Structs for nested array access
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
pystencils/astnodes.py
+0
-1
0 additions, 1 deletion
pystencils/astnodes.py
pystencils/kernel_contrains_check.py
+0
-1
0 additions, 1 deletion
pystencils/kernel_contrains_check.py
pystencils/transformations.py
+0
-1
0 additions, 1 deletion
pystencils/transformations.py
with
0 additions
and
3 deletions
pystencils/astnodes.py
+
0
−
1
View file @
6eac2f4f
...
...
@@ -9,7 +9,6 @@ import pystencils
from
pystencils.typing.utilities
import
create_type
,
get_next_parent_of_type
from
pystencils.enums
import
Target
,
Backend
from
pystencils.field
import
Field
from
pystencils.struct
import
Struct
from
pystencils.typing.typed_sympy
import
FieldPointerSymbol
,
FieldShapeSymbol
,
FieldStrideSymbol
,
TypedSymbol
from
pystencils.sympyextensions
import
fast_subs
...
...
This diff is collapsed.
Click to expand it.
pystencils/kernel_contrains_check.py
+
0
−
1
View file @
6eac2f4f
...
...
@@ -133,4 +133,3 @@ class KernelConstraintsCheck:
raise
ValueError
(
f
"
Violation of loop independence condition. Field
{
field_access
.
field
}
is read at
"
f
"
{
field_access
.
offsets
}
and written at
{
write_offset
}
"
)
self
.
fields_read
.
add
(
field_access
.
field
)
This diff is collapsed.
Click to expand it.
pystencils/transformations.py
+
0
−
1
View file @
6eac2f4f
...
...
@@ -6,7 +6,6 @@ from copy import deepcopy
from
types
import
MappingProxyType
from
typing
import
Set
import
numpy
as
np
import
sympy
as
sp
import
pystencils
as
ps
...
...
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
sign in
to comment