Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
tilelang
Commits
6a388c0e
Unverified
Commit
6a388c0e
authored
Oct 20, 2025
by
Lei Wang
Committed by
GitHub
Oct 20, 2025
Browse files
[Layout] Utilizing IsEqual instead of StructuralEqual (#1073)
parent
27701c3d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/transform/layout_inference.cc
src/transform/layout_inference.cc
+1
-1
No files found.
src/transform/layout_inference.cc
View file @
6a388c0e
...
@@ -159,7 +159,7 @@ public:
...
@@ -159,7 +159,7 @@ public:
}
}
}
}
// If already in map, ensure they are structurally equal
// If already in map, ensure they are structurally equal
ICHECK
(
StructuralEqual
()(
layout
,
layout_map
[
buffer
]))
ICHECK
(
layout
->
IsEqual
(
layout_map
[
buffer
]
.
get
()
))
<<
"Get different layout for "
<<
buffer
<<
"Get different layout for "
<<
buffer
<<
"
\n
current layout: "
<<
layout
->
DebugOutput
()
<<
"
\n
current layout: "
<<
layout
->
DebugOutput
()
<<
"
\n
previous layout: "
<<
layout_map
[
buffer
]
->
DebugOutput
();
<<
"
\n
previous layout: "
<<
layout_map
[
buffer
]
->
DebugOutput
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment