Skip to content

Commit 039eba8

Browse files
authored
fix(tensilelite): Fix sia bug (#8937)
## Motivation [AIHPBLAS-830] JIRA ID: https://amd-hub.atlassian.net/browse/AIHPBLAS-830 Fix a bug from 4068136#diff-be3579e876404146e15d81d6dd89c962c5632c8ebfff2c58c088ec6f11bf20a2 ## Technical Details <!-- Explain the changes along with any relevant GitHub links. --> ## Test Plan <!-- Explain any relevant testing done to verify this PR. --> ## Test Result <!-- Briefly summarize test outcomes. --> ## Submission Checklist - [x] Look over the contributing guidelines at https://github.com/ROCm/ROCm/blob/develop/CONTRIBUTING.md#pull-requests. [AIHPBLAS-830]: https://amd-hub.atlassian.net/browse/AIHPBLAS-830?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ
1 parent 5b58434 commit 039eba8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

projects/hipblaslt/tensilelite/Tensile/KernelWriter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6896,7 +6896,7 @@ def initSubTileInfo(tc):
68966896
and kernel["PrefetchGlobalRead"]
68976897
self.states.scheduleLocalWrite = kernel["ScheduleLocalWrite"] \
68986898
and kernel["PrefetchGlobalRead"]
6899-
self.states.scheduleIterAlg = kernel["ScheduleIterAlg"]
6899+
self.states.scheduleIterAlg = kernel["_ScheduleIterAlg"]
69006900
else:
69016901
self.states.scheduleGlobalRead = 0
69026902
self.states.scheduleLocalWrite = 0

0 commit comments

Comments
 (0)