Skip to content

Commit

Permalink
Add scheuldeIteralg == 1 as valid for streamk.
Browse files Browse the repository at this point in the history
  • Loading branch information
daineAMD committed Dec 20, 2024
1 parent 318753a commit 2229174
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tensilelite/Tensile/SolutionStructs.py
Original file line number Diff line number Diff line change
Expand Up @@ -2185,7 +2185,7 @@ def assignDerivedParameters(state):
reject(state, "ScheduleGlobalRead not supported with Stream-K")
if state["ScheduleLocalWrite"] != 1:
reject(statue, "ScheduleLocalWrite not supported with Stream-K")
if state["ScheduleIterAlg"] != 3:
if state["ScheduleIterAlg"] != 1 and state["ScheduleIterAlg"] != 3:
reject(state, "ScheduleIterAlg not supported with Stream-K")
if state["StreamKAtomic"] == 1:
if not state["ProblemType"]["DataType"].isSingle():
Expand Down

0 comments on commit 2229174

Please sign in to comment.