Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion projects/hipblaslt/tensilelite/Tensile/KernelWriter.py
Original file line number Diff line number Diff line change
Expand Up @@ -1445,7 +1445,7 @@ def calculateRangeAndUpdateCounter(itemCounter, writeCounters, length):
iterCode.add(SNop(waitState=1, comment="VALU packing writes to be consumed by matrix instruction"))
curPackIdx += 1
break
if not kernel["SourceSwap"] and kernel["UseF32XEmulation"]:
if kernel["UseF32XEmulation"]:
# HACK add dummy waits btween swap and mfmas. TODO: improve pack scheduling to avoid this
numDummy = 1 if kernel["MatrixInstM"] == 16 and kernel["MatrixInstK"] == 16 else 2
for numd in range(numDummy):
Expand Down