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
Merge requests
!300
Fix nontemporal stores on non-x86 for fields with variable size
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix nontemporal stores on non-x86 for fields with variable size
nontemporal
into
master
Overview
5
Commits
4
Pipelines
4
Changes
2
Merged
Michael Kuron
requested to merge
nontemporal
into
master
2 years ago
Overview
5
Commits
4
Pipelines
4
Changes
2
Expand
Fix the issue discussed in
walberla/walberla!553 (comment 19202)
0
0
Merge request reports
Compare
master
version 3
040040c7
2 years ago
version 2
a4d16275
2 years ago
version 1
67c3f7bb
2 years ago
master (base)
and
version 2
latest version
df7c6e75
4 commits,
2 years ago
version 3
040040c7
3 commits,
2 years ago
version 2
a4d16275
1 commit,
2 years ago
version 1
67c3f7bb
2 commits,
2 years ago
2 files
+
17
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
pystencils/astnodes.py
+
6
−
0
Options
@@ -619,7 +619,13 @@ class SympyAssignment(Node):
for
i
in
range
(
len
(
symbol
.
offsets
)):
loop_counters
.
add
(
LoopOverCoordinate
.
get_loop_counter_symbol
(
i
))
result
.
update
(
loop_counters
)
result
.
update
(
self
.
_lhs_symbol
.
atoms
(
sp
.
Symbol
))
sizes
=
set
().
union
(
*
(
a
.
field
.
shape
for
a
in
self
.
_lhs_symbol
.
atoms
(
ResolvedFieldAccess
)))
sizes
=
filter
(
lambda
s
:
isinstance
(
s
,
FieldShapeSymbol
),
sizes
)
result
.
update
(
sizes
)
return
result
@property
Loading