Skip to content

Commit

Permalink
fix: pathing order of ops
Browse files Browse the repository at this point in the history
  • Loading branch information
bstefanuk committed Nov 22, 2024
1 parent 471de13 commit ba921fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tensilelite/Tensile/TensileCreateLibrary.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def buildAssemblyCodeObjectFiles(kernels, kernelWriterAssembly, outputPath):
coFileMap = collections.defaultdict(list)

if len(objectFiles):
coFileMap[asmDir / "TensileLibrary_"+ gfx + extCoRaw] = objectFiles
coFileMap[asmDir / ("TensileLibrary_"+ gfx + extCoRaw)] = objectFiles

for kernel in archKernels:
coName = kernel.get("codeObjectFile", None)
Expand Down

0 comments on commit ba921fa

Please sign in to comment.