1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438
|
################################################################################
#
# Copyright (C) 2016-2022 Advanced Micro Devices, Inc. All rights reserved.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#
################################################################################
# This script only gets called by CMake
if __name__ == "__main__":
print("This file can no longer be run as a script. Run 'Tensile/bin/TensileCreateLibrary' instead.")
exit(1)
from . import Common
from . import ClientExecutable
from . import EmbeddedData
from . import LibraryIO
from . import Utils
from .Common import globalParameters, HR, print1, print2, printExit, ensurePath, \
CHeader, CMakeHeader, assignGlobalParameters, gfxName, architectureMap
from .KernelWriterAssembly import KernelWriterAssembly
from .KernelWriterSource import KernelWriterSource
from .SolutionLibrary import MasterSolutionLibrary
from .SolutionStructs import Solution
from .SolutionWriter import SolutionWriter
import argparse
import collections
import itertools
import os
import re
import shlex
import shutil
import subprocess
import sys
import time
from copy import deepcopy
################################################################################
def processKernelSource(kernel, kernelWriterSource, kernelWriterAssembly):
"""
Generate source for a single kernel.
Returns (error, source, header, kernelName).
"""
try:
kernelWriter = kernelWriterSource if kernel["KernelLanguage"] == "Source" else kernelWriterAssembly
# get kernel name
kernelName = kernelWriter.getKernelFileBase(kernel)
(err, src) = kernelWriter.getSourceFileString(kernel)
header = kernelWriter.getHeaderFileString(kernel)
# will be put in Kernels.h/cpp if None
filename = kernel._state.get("codeObjectFile", None)
except RuntimeError:
return (1, "", "", kernelName, None)
return (err, src, header, kernelName, filename)
def getAssemblyCodeObjectFiles(kernels, kernelWriterAssembly, outputPath):
destDir = ensurePath(os.path.join(outputPath, 'library'))
asmDir = kernelWriterAssembly.getAssemblyDirectory()
assemblyKernels = list([k for k in kernels if k['KernelLanguage'] == 'Assembly'])
if len(assemblyKernels) == 0:
return []
archs = collections.defaultdict(list)
for k in assemblyKernels:
archs[tuple(k['ISA'])].append(k)
coFiles = []
for arch, archKernels in archs.items():
archName = gfxName(arch)
objectFiles = list([kernelWriterAssembly.getKernelFileBase(k) + '.o' \
for k in archKernels if 'codeObjectFile' not in k])
numObjectFiles = len([1 for k in archKernels if k['KernelLanguage'] == 'Assembly'])
if numObjectFiles == 0:
continue
if globalParameters["MergeFiles"] or globalParameters["NumMergedFiles"] > 1 or globalParameters["LazyLibraryLoading"]:
#Group kernels from placeholder libraries
coFileMap = collections.defaultdict(list)
if len(objectFiles):
coFileMap[os.path.join(destDir, "TensileLibrary_"+archName+".co")] = objectFiles
for kernel in archKernels:
coName = kernel.get("codeObjectFile", None)
if coName:
coFileMap[os.path.join(destDir, coName+".co")] += [kernelWriterAssembly.getKernelFileBase(kernel) + '.o']
for coFile, objectFiles in coFileMap.items():
if os.name == "nt":
# On Windows, the objectFiles list command line (including spaces)
# exceeds the limit of 8191 characters, so using response file
responseArgs = objectFiles
responseFile = os.path.join(asmDir, 'clangArgs.txt')
with open(responseFile, 'wt') as file:
file.write( " ".join(responseArgs) )
file.flush()
args = [globalParameters['AssemblerPath'], '-target', 'amdgcn-amd-amdhsa', '-o', coFile, '@clangArgs.txt']
# change to use check_output to force windows cmd block util command finish
try:
out = subprocess.check_output(args, stderr=subprocess.STDOUT, cwd=asmDir)
print2(out)
except subprocess.CalledProcessError as err:
print(err.output)
raise
else:
args = kernelWriterAssembly.getLinkCodeObjectArgs(objectFiles, coFile)
# change to use check_output to force windows cmd block util command finish
try:
out = subprocess.check_output(args, stderr=subprocess.STDOUT, cwd=asmDir)
print2(out)
except subprocess.CalledProcessError as err:
print(err.output)
raise
coFiles.append(coFile)
else:
# no mergefiles
assemblyKernelNames = [kernelWriterAssembly.getKernelFileBase(k) for k in archKernels]
origCOFiles = [os.path.join(asmDir, k + '.co') for k in assemblyKernelNames]
newCOFiles = []
if globalParameters["PackageLibrary"]:
newCOFiles = [os.path.join(destDir, archName, k + '.co') for k in assemblyKernelNames]
else:
newCOFiles = [os.path.join(destDir, k + '_' + archName + '.co') for k in assemblyKernelNames]
for src, dst in Utils.tqdm(zip(origCOFiles, newCOFiles), "Copying code objects"):
shutil.copyfile(src, dst)
coFiles += newCOFiles
return coFiles
def which(p):
exes = [p+x for x in ['.bat', '', '.exe']] # bat may be front end for file with no extension
system_path = os.environ['PATH'].split(os.pathsep)
if p == 'hipcc' and 'CMAKE_CXX_COMPILER' in os.environ and os.path.isfile(os.environ['CMAKE_CXX_COMPILER']):
return os.environ['CMAKE_CXX_COMPILER']
for dirname in system_path+[globalParameters["ROCmBinPath"]]:
for exe in exes:
candidate = os.path.join(os.path.expanduser(dirname), exe)
if os.path.isfile(candidate):
return candidate
return None
def splitArchs():
# Helper for architecture
def isSupported(arch):
return globalParameters["AsmCaps"][arch]["SupportedISA"] and \
globalParameters["AsmCaps"][arch]["SupportedSource"]
if ";" in globalParameters["Architecture"]:
wantedArchs = globalParameters["Architecture"].split(";")
else:
wantedArchs = globalParameters["Architecture"].split("_")
archs = []
cmdlineArchs = []
if "all" in wantedArchs:
for arch in globalParameters['SupportedISA']:
if isSupported(arch):
if (arch == (9,0,6) or arch == (9,0,8) or arch == (9,0,10)):
if (arch == (9,0,10)):
archs += [gfxName(arch) + '-xnack+']
cmdlineArchs += [gfxName(arch) + ':xnack+']
archs += [gfxName(arch) + '-xnack-']
cmdlineArchs += [gfxName(arch) + ':xnack-']
else:
archs += [gfxName(arch)]
cmdlineArchs += [gfxName(arch)]
else:
for arch in wantedArchs:
archs += [re.sub(":", "-", arch)]
cmdlineArchs += [arch]
return archs, cmdlineArchs
def buildSourceCodeObjectFile(CxxCompiler, outputPath, kernelFile):
buildPath = ensurePath(os.path.join(globalParameters['WorkingPath'], 'code_object_tmp'))
destDir = ensurePath(os.path.join(outputPath, 'library'))
(_, filename) = os.path.split(kernelFile)
(base, _) = os.path.splitext(filename)
if "CmakeCxxCompiler" in globalParameters and globalParameters["CmakeCxxCompiler"] is not None:
os.environ["CMAKE_CXX_COMPILER"] = globalParameters["CmakeCxxCompiler"]
objectFilename = base + '.o'
soFilename = base + '.so'
coFilenames = []
if (CxxCompiler == "hipcc"):
archs, cmdlineArchs = splitArchs()
archFlags = ['--offload-arch=' + arch for arch in cmdlineArchs]
hipFlags = ["--genco", "-D__HIP_HCC_COMPAT_MODE__=1"] #needs to be fixed when Maneesh's change is made available
hipFlags += ['-v']
hipFlags += ['-I', outputPath]
# Add build-id for builds with rocm 5.3+
compilerVer = globalParameters['HipClangVersion'].split(".")[:2]
compilerVer = [int(c) for c in compilerVer]
if len(compilerVer) >= 2 and (compilerVer[0] > 5 or (compilerVer[0] == 5 and compilerVer[1] > 2)):
hipFlags += ["-Xoffload-linker", "--build-id"]
launcher = shlex.split(os.environ.get('Tensile_CXX_COMPILER_LAUNCHER', ''))
if os.name == "nt":
hipFlags += ['-std=c++14', '-fms-extensions', '-fms-compatibility', '-fPIC', '-Wno-deprecated-declarations']
compileArgs = launcher + [which('hipcc')] + hipFlags + archFlags + [kernelFile, '-c', '-o', os.path.join(buildPath, objectFilename)]
else:
compileArgs = launcher + [which('hipcc')] + hipFlags + archFlags + [kernelFile, '-c', '-o', os.path.join(buildPath, objectFilename)]
if globalParameters["PrintCodeCommands"]:
print('hipcc:', ' '.join(compileArgs))
subprocess.check_call(compileArgs)
# get hipcc version due to compatiblity reasons
hipccver = globalParameters['HipClangVersion'].split(".")
hipccMaj = int(hipccver[0])
hipccMin = int(hipccver[1])
# for hipclang 5.2 and above, clang offload bundler changes the way input/output files are specified
inflag = "-inputs"
outflag = "-outputs"
if (hipccMaj == 5 and hipccMin >= 2) or hipccMaj >= 6:
inflag = "-input"
outflag = "-output"
infile = os.path.join(buildPath, objectFilename)
try:
bundlerArgs = [globalParameters["ClangOffloadBundlerPath"], "-type=o", "%s=%s" % (inflag, infile), "-list"]
listing = subprocess.check_output(bundlerArgs, stderr=subprocess.STDOUT).decode().split("\n")
for target in listing:
matched = re.search("gfx.*$", target)
if matched:
arch = re.sub(":", "-", matched.group())
if "TensileLibrary" in base and "fallback" in base:
outfile = os.path.join(buildPath, "{0}_{1}.hsaco".format(base, arch))
elif "TensileLibrary" in base:
variant = [t for t in ["", "xnack-", "xnack+"] if t in target][-1]
baseVariant = base+"-"+variant if variant else base
if arch in baseVariant:
outfile = os.path.join(buildPath, baseVariant+".hsaco")
else:
outfile = None
else:
outfile = os.path.join(buildPath, "{0}-000-{1}.hsaco".format(soFilename, arch))
#Compilation
if outfile:
coFilenames.append(os.path.split(outfile)[1])
#bundlerArgs = [globalParameters["ClangOffloadBundlerPath"], "-type=o", "-targets=%s" % target, "-inputs=%s" % infile, "-outputs=%s" % outfile, "-unbundle"]
bundlerArgs = [globalParameters["ClangOffloadBundlerPath"], "-type=o", "-targets=%s" % target,
"%s=%s" % (inflag, infile), "%s=%s" % (outflag, outfile), "-unbundle"]
if globalParameters["PrintCodeCommands"]:
print(' '.join(bundlerArgs))
# change to use check_output to force windows cmd block util command finish
out = subprocess.check_output(bundlerArgs, stderr=subprocess.STDOUT)
print2(out)
except subprocess.CalledProcessError as err:
print(err.output)
for i in range(len(archs)):
outfile = os.path.join(buildPath, "{0}-000-{1}.hsaco".format(soFilename, archs[i]))
coFilenames.append(os.path.split(outfile)[1])
#bundlerArgs = [globalParameters["ClangOffloadBundlerPath"], "-type=o", "-targets=hip-amdgcn-amd-amdhsa--%s" % cmdlineArchs[i], "-inputs=%s" % infile, "-outputs=%s" % outfile, "-unbundle"]
bundlerArgs = [globalParameters["ClangOffloadBundlerPath"], "-type=o", "-targets=hip-amdgcn-amd-amdhsa--%s" % cmdlineArchs[i],
"%s=%s" % (inflag, infile), "%s=%s" % (outflag, outfile), "-unbundle"]
if globalParameters["PrintCodeCommands"]:
print(' '.join(bundlerArgs))
# change to use check_output to force windows cmd block util command finish
try:
out = subprocess.check_output(bundlerArgs, stderr=subprocess.STDOUT)
print2(out)
except subprocess.CalledProcessError as err:
print(err.output)
raise
else:
raise RuntimeError("Unknown compiler {}".format(CxxCompiler))
destCosList = []
if "PackageLibrary" in globalParameters and globalParameters["PackageLibrary"]:
for arch in archs:
ensurePath(os.path.join(destDir, arch))
archCoFilenames = [name for name in coFilenames if arch in name]
extractedCOs = [os.path.join(buildPath, name) for name in archCoFilenames]
destCOs = [os.path.join(destDir, arch, name) for name in archCoFilenames]
destCosList += destCOs
if globalParameters["PrintCodeCommands"]:
print ("# copy source code objects : ", extractedCOs)
print ("# to dest source code objects : ", destCOs)
for (src, dst) in zip(extractedCOs, destCOs):
shutil.copyfile(src, dst)
else:
coFilenames = [name for name in coFilenames]
extractedCOs = [os.path.join(buildPath, name) for name in coFilenames]
destCOs = [os.path.join(destDir, name) for name in coFilenames]
destCosList += destCOs
for (src, dst) in zip(extractedCOs, destCOs):
shutil.copyfile(src, dst)
return destCosList
def buildSourceCodeObjectFiles(CxxCompiler, kernelFiles, outputPath):
args = zip(itertools.repeat(CxxCompiler), itertools.repeat(outputPath), kernelFiles)
coFiles = Common.ParallelMap(buildSourceCodeObjectFile, args, "Compiling source kernels",
method=lambda x: x.starmap)
return itertools.chain.from_iterable(coFiles)
################################################################################
def prepAsm(kernelWriterAssembly):
"""
Create and prepare the assembly directory - called ONCE per output dir:
"""
asmPath = ensurePath(os.path.join(globalParameters["WorkingPath"], "assembly") )
isa = globalParameters["CurrentISA"]
assemblerFileName = os.path.join(asmPath, \
"asm-new.%s"%("bat" if os.name=="nt" else "sh"))
assemblerFile = open(assemblerFileName, "w")
if os.name == "nt":
assemblerFile.write("@echo off\n")
assemblerFile.write("set f=%1\n\n")
assemblerFile.write("set arg2=--wave64\n")
assemblerFile.write("if [%2] NEQ [] set arg2=%2\n\n")
assemblerFile.write("set /A wave=64\n")
assemblerFile.write("if %arg2% EQU --wave32 set /A wave=32\n\n")
assemblerFile.write("set h={gfxName}\n".format(gfxName = Common.gfxName(isa)))
cArgs32 = " ".join(kernelWriterAssembly.getCompileArgs("%f%.s", "%f%.o", isa=isa, wavefrontSize=32))
cArgs64 = " ".join(kernelWriterAssembly.getCompileArgs("%f%.s", "%f%.o", isa=isa, wavefrontSize=64))
lArgs = " ".join(kernelWriterAssembly.getLinkCodeObjectArgs(["%f%.o"], "%f%.co"))
assemblerFile.write(f"if %wave% == 32 ({cArgs32}) else ({cArgs64})\n")
assemblerFile.write(f"{lArgs}\n")
assemblerFile.write( "copy %f%.co ..\..\..\library\%f%_%h%.co\n")
else:
assemblerFile.write("#!/bin/sh {log}\n".format(log = "-x" if globalParameters["PrintLevel"] >=2 else ""))
assemblerFile.write("# usage: asm-new.sh kernelName(no extension) [--wave32]\n")
assemblerFile.write("f=$1\n")
assemblerFile.write("shift\n")
assemblerFile.write('if [ ! -z "$1" ] && [ "$1" = "--wave32" ]; then\n')
assemblerFile.write(" wave=32\n")
assemblerFile.write(" shift\n")
assemblerFile.write("else\n")
assemblerFile.write(" wave=64\n")
assemblerFile.write("fi\n")
assemblerFile.write("h={gfxName}\n".format(gfxName = Common.gfxName(isa)))
cArgs32 = kernelWriterAssembly.getCompileArgs("$f.s", "$f.o", isa=isa, wavefrontSize=32)
cArgs64 = kernelWriterAssembly.getCompileArgs("$f.s", "$f.o", isa=isa, wavefrontSize=64)
lArgs = kernelWriterAssembly.getLinkCodeObjectArgs(["$f.o"], "$f.co")
assemblerFile.write("if [ $wave -eq 32 ]; then\n")
assemblerFile.write(" ".join(cArgs32) + "\n")
assemblerFile.write("else\n")
assemblerFile.write(" ".join(cArgs64) + "\n")
assemblerFile.write("fi\n")
assemblerFile.write(" ".join(lArgs) + "\n")
assemblerFile.write("cp $f.co ../../../library/${f}_$h.co\n")
assemblerFile.write("mkdir -p ../../../asm_backup && ")
assemblerFile.write("cp $f.s ../../../asm_backup/$f.s\n")
assemblerFile.close()
os.chmod(assemblerFileName, 0o777)
################################################################################
def buildKernelSourceAndHeaderFiles(results, outputPath, kernelsWithBuildErrs):
"""
Logs errors and writes appropriate info to kernelSourceFile and kernelHeaderFile.
Arguments:
results: list of (err, src, header, kernelName, filename)
outputPath: path to source directory
kernelsWithBuildErrs: Dictionary to be updated with kernels that have errors
kernelSourceFile: File to write source data to
kernelHeaderFile: File to write header data to
Returns:
sourceFilenames: Array containing source kernel filenames
"""
# Find kernels to write
kernelsToWrite = []
filesToWrite = collections.defaultdict(list)
validKernelCount = 0
for (err,src,header,kernelName, filename) in results:
# Keep track of kernels with errors
if err:
kernelsWithBuildErrs[kernelName] = err
# Don't create a file for empty kernels
if len(src.strip()) == 0:
continue
kernelsToWrite.append((err, src, header, kernelName))
# Create list of files
if filename:
filesToWrite[os.path.join(os.path.normcase(outputPath),filename)].append((err, src, header, kernelName))
elif globalParameters["MergeFiles"]:
kernelSuffix = ""
if globalParameters["NumMergedFiles"] > 1:
kernelSuffix = validKernelCount % globalParameters["NumMergedFiles"]
filesToWrite[os.path.join(os.path.normcase(outputPath), "Kernels"+kernelSuffix)]\
.append((err, src, header, kernelName))
else:
filesToWrite[os.path.join(os.path.normcase(outputPath),kernelName)].append((err, src, header, kernelName))
validKernelCount += 1
#Ensure there's at least one kernel file for helper kernels
if globalParameters["LazyLibraryLoading"] or (globalParameters["MergeFiles"] and not kernelsToWrite):
kernelSuffix = ""
if globalParameters["NumMergedFiles"] > 1:
kernelSuffix = "0"
filesToWrite[os.path.join(os.path.normcase(outputPath), "Kernels"+kernelSuffix)] = []
# Write kernel data to files
#Parse list of files and write kernels
for filename, kernelList in filesToWrite.items():
with open(filename+".h", "w", encoding="utf-8") as kernelHeaderFile, \
open(filename+".cpp", "w", encoding="utf-8") as kernelSourceFile:
kernelSourceFile.write(CHeader)
kernelHeaderFile.write(CHeader)
kernelSourceFile.write("#include \"{}.h\"\n".format(filename))
kernelHeaderFile.write("#pragma once\n")
if globalParameters["RuntimeLanguage"] == "HIP":
kernelHeaderFile.write("#include <hip/hip_runtime.h>\n")
kernelHeaderFile.write("#include <hip/hip_ext.h>\n\n")
kernelHeaderFile.write("#include \"KernelHeader.h\"\n\n")
for err,src,header,kernelName in kernelList:
kernelSourceFile.write(src)
kernelHeaderFile.write(header)
sourceFilenames = [filePrefix+".cpp" for filePrefix in filesToWrite]
return sourceFilenames
################################################################################
# Write Solutions and Kernels for BenchmarkClient or LibraryClient
################################################################################
def writeSolutionsAndKernels(outputPath, CxxCompiler, problemTypes, solutions, kernels, kernelHelperObjs, \
solutionWriter, kernelWriterSource, kernelWriterAssembly, errorTolerant=False):
start = time.time()
codeObjectFiles = []
# Push working path into build_tmp folder because there may be more than
# one process running this script. This is to avoid build directory clashing.
# NOTE: file paths must not contain the lower case word 'kernel' or the
# /opt/rocm/bin/extractkernel will fail.
# See buildSourceCodeObjectFile:167 for the call to this binary.
Common.pushWorkingPath('build_tmp')
Common.pushWorkingPath(os.path.basename(outputPath).upper())
print1("# Writing Kernels...")
kernelFiles = []
kernelSourceFile = None
kernelHeaderFile = None
if not globalParameters["MergeFiles"] or globalParameters["NumMergedFiles"] > 1 or globalParameters["LazyLibraryLoading"]:
ensurePath(os.path.join(outputPath, "Kernels"))
##############################################################################
# Write Kernels
##############################################################################
kernelsWithBuildErrs = {}
prepAsm(kernelWriterAssembly)
# Kernels may be intended for different co files, but generate the same .o file
# Mark duplicate kernels to avoid race condition
# @TODO improve organization so this problem doesn't appear
objFilenames = set()
for kernel in kernels:
if kernel["KernelLanguage"] == "Assembly":
base = kernelWriterAssembly.getKernelFileBase(kernel)
if base in objFilenames:
kernel.duplicate = True
else:
objFilenames.add(base)
kernel.duplicate = False
kIter = zip(kernels, itertools.repeat(kernelWriterSource), itertools.repeat(kernelWriterAssembly))
results = Common.ParallelMap(processKernelSource, kIter, "Generating kernels", method=lambda x: x.starmap, maxTasksPerChild=1)
removeKernels = []
removeSolutions = []
removeResults = []
for kernIdx, res in Utils.tqdm(enumerate(results)):
(err,src,header,kernelName, filename) = res
if(err == -2):
removeKernels.append(kernels[kernIdx])
removeSolutions.append(solutions[kernIdx])
removeResults.append(results[kernIdx])
for kern in removeKernels:
kernels.remove(kern)
for solut in removeSolutions:
solutions.remove(solut)
for rel in removeResults:
results.remove(rel)
kernelFiles += buildKernelSourceAndHeaderFiles(results, outputPath, kernelsWithBuildErrs)
kernelsToBuild = list(kernels)
if errorTolerant:
def success(kernel):
writer = kernelWriterAssembly if kernel['KernelLanguage'] == 'Assembly' else kernelWriterSource
kernelName = writer.getKernelName(kernel)
return kernelName not in kernelsWithBuildErrs
kernelsToBuild = list(filter(success, kernelsToBuild))
if False:#len(kernelsWithBuildErrs) > 0:
print("\nKernel compilation failed in one or more subprocesses. May want to set CpuThreads=0 and re-run to make debug easier")
printExit("** kernel compilation failure **")
# Put all kernel helper objects into the first merged kernel file
if globalParameters["NumMergedFiles"] > 1 and len(kernelFiles) > 0:
kernelFilename = kernelFiles[0].replace(".cpp", "")
kernelSourceFile = open(kernelFilename + ".cpp", 'a', encoding="utf-8")
kernelHeaderFile = open(kernelFilename + ".h", 'a', encoding="utf-8")
elif globalParameters["MergeFiles"] or globalParameters["LazyLibraryLoading"]:
kernelSourceFilename = os.path.join(os.path.normcase(outputPath), "Kernels.cpp")
kernelHeaderFilename = os.path.join(os.path.normcase(outputPath), "Kernels.h")
kernelSourceFile = open(kernelSourceFilename, "a", encoding="utf-8")
kernelHeaderFile = open(kernelHeaderFilename, "a", encoding="utf-8")
# handle helper kernel function
for ko in kernelHelperObjs:
kernelName = ko.getKernelName()
# write kernel.cpp
if not globalParameters["MergeFiles"]:
kernelSourceFilename = os.path.join(outputPath, "Kernels", kernelName+".cpp")
kernelSourceFile = open(kernelSourceFilename, "w")
kernelSourceFile.write(CHeader)
kernelFiles.append(kernelSourceFilename)
(err, src) = ko.getSourceFileString()
kernelSourceFile.write(src)
if err:
print("*** warning: invalid kernel#%u"%kernelName)
if not globalParameters["MergeFiles"]:
kernelSourceFile.close()
# write kernel.h
if not globalParameters["MergeFiles"]:
kernelHeaderFile = open(os.path.join(os.path.normcase(outputPath), "Kernels", kernelName + ".h"), "w")
kernelHeaderFile.write(CHeader)
kernelHeaderFile.write(ko.getHeaderFileString())
if not globalParameters["MergeFiles"]:
kernelHeaderFile.close()
# close merged
if globalParameters["MergeFiles"]:
if kernelSourceFile:
kernelSourceFile.close()
if kernelHeaderFile:
kernelHeaderFile.close()
if not globalParameters["GenerateSourcesAndExit"]:
codeObjectFiles += buildSourceCodeObjectFiles(CxxCompiler, kernelFiles, outputPath)
codeObjectFiles += getAssemblyCodeObjectFiles(kernelsToBuild, kernelWriterAssembly, outputPath)
stop = time.time()
print("# Kernel Building elapsed time = %.1f secs" % (stop-start))
Common.popWorkingPath() # outputPath.upper()
if globalParameters["CleanupBuildFiles"]:
shutil.rmtree(globalParameters["WorkingPath"])
Common.popWorkingPath() # build_tmp
return codeObjectFiles
def writeSolutionAndExactTable(scheduleName, deviceNames, schedProbName, problemType, \
solutionsForSchedule, solutionNames, exactLogic):
s = ""
s += "namespace { // Start schedule '%s'\n" % scheduleName
s += "// solution table - function, name, assertion requirements\n"
s += "static const SolutionInfo solutionTable_%s[] = {\n" % (schedProbName)
for i in range(0, len(solutionsForSchedule)):
solution = solutionsForSchedule[i]
solutionName = solutionNames[i]
s += " {(void*)%s, \"%s\", {%d, %d, %d, %d, %d, %d, %d} }%s // %d" % \
(solutionName, solutionName, \
solution["AssertSummationElementMultiple"], \
solution["AssertFree0ElementMultiple"], \
solution["AssertFree1ElementMultiple"], \
solution["AssertMinApproxSize"], \
False, \
solution["PackBatchDims"]==2, \
solution["PackBatchDims"]==1, \
"," if i < len(solutionsForSchedule)-1 else "", \
i)
s += "\n"
s += "};\n\n"
# Write the exact problems here
s += "// table of exact problem dims and selected solutionIdx\n"
s += "static const std::pair<const ProblemKey_%s, int> embeddedExactTable_%s[] = {\n" % (problemType,schedProbName)
numSizes = problemType["TotalIndices"]
for ruleIdx in range(0, len(exactLogic)):
rule = exactLogic[ruleIdx]
problemSize = rule[0][:numSizes]
solutionIdx = rule[1][0]
solutionGFlops = rule[1][1]
s += " { {"
for i in range(0, len(problemSize)):
if i == 0:
s += "%u" % problemSize[i]
else:
s += ", %u" % problemSize[i]
s += "}, %u}" % (solutionIdx)
s += "," if ruleIdx != len(exactLogic)-1 else " "
s += " // %.0f GFlop/s" % (solutionGFlops)
s += "\n"
s += "};\n\n"
# Create a solution mapper and init with the table above:
s += "// The solution master constructor here adds device to the master solution mapper\n"
s += "// The entrypoint to find a solution for this problem is through the master solution master\n"
s += "static SolutionMapper_%s solutionMapper_%s(\n" % (problemType, schedProbName)
s += " \"%s\", // schedule+problem name\n" % (schedProbName)
s += " solutionTable_%s, %u,\n" % (schedProbName, len(solutionsForSchedule))
s += " embeddedExactTable_%s, %u,\n" % (schedProbName, len(exactLogic))
s += " &problemType_%s);\n" % (problemType)
s += "} // end anonymous namespace\n"
return s
################################################################################
# Write Range Logic Recursive
# ptr :
# True : write logic to return the function pointer
# False : write logic to return the function name
################################################################################
def writeExactLogic(problemType, indexOrder,
solutionsForSchedule, exactLogic, \
solutionNames, ptr):
s = ""
s += " ProblemDims_%s pdims(" % problemType
indexChars = globalParameters["IndexChars"]
firstStrideAB = 0 if problemType["UseInitialStridesAB"] else 1
firstStrideCD = 0 if problemType["UseInitialStridesCD"] else 1
lastStrideD = problemType["NumIndicesC"]
lastStrideC = problemType["NumIndicesC"]
lastStrideA = len(problemType["IndexAssignmentsA"])
lastStrideB = len(problemType["IndexAssignmentsB"])
for i in range(firstStrideCD,lastStrideD):
if i != firstStrideCD: s += ", "
s += "strideD%u%s" % (i, indexChars[i])
for i in range(firstStrideCD,lastStrideC):
s += ", strideC%u%s" % (i, indexChars[i])
for i in range(firstStrideAB,lastStrideA):
s += ", strideA%u%s" % (i, \
indexChars[problemType["IndexAssignmentsA"][i]])
for i in range(firstStrideAB,lastStrideB):
s += ", strideB%u%s" % (i, \
indexChars[problemType["IndexAssignmentsB"][i]])
for i in range(0,len(indexOrder)):
s += ", size%s" % indexChars[i]
s += ");\n"
s += " auto solutionMapper = reinterpret_cast<SolutionMapper_%s *> (masterSolutionMapper_%s.mapper());\n" \
% (problemType, problemType)
if ptr:
s += " return solutionMapper->getSolutionWithFallback(pdims,&masterSolutionMapper_%s);\n" % problemType
else:
s += " return solutionMapper->getSolutionWithFallback(pdims,&masterSolutionMapper_%s)->_info->_name;\n" % problemType
return s
################################################################################
# Write Solution Call
################################################################################
def writeSolutionCall(solutionName, problemType):
indexChars = globalParameters["IndexChars"]
s = ""
s += "%s(" % solutionName
# solution parameters
s += " dataD, dataC, dataA, dataB, alpha"
if problemType["UseBeta"]:
s += ", beta"
s += ", offsetC, offsetA, offsetB"
firstStrideAB = firstStrideCD = 1
if problemType["UseInitialStridesAB"]:
firstStrideAB = 0
if problemType["UseInitialStridesCD"]:
firstStrideCD = 0
lastStrideD = problemType["NumIndicesC"]
lastStrideC = problemType["NumIndicesC"]
lastStrideA = len(problemType["IndexAssignmentsA"])
lastStrideB = len(problemType["IndexAssignmentsB"])
for i in range(firstStrideCD,lastStrideD):
s += ", strideD%u%s" % (i, indexChars[i])
for i in range(firstStrideCD,lastStrideC):
s += ", strideC%u%s" % (i, indexChars[i])
for i in range(firstStrideAB,lastStrideA):
s += ", strideA%u%s" % (i, \
indexChars[problemType["IndexAssignmentsA"][i]])
for i in range(firstStrideAB,lastStrideB):
s += ", strideB%u%s" % (i, \
indexChars[problemType["IndexAssignmentsB"][i]])
for i in range(0, problemType["TotalIndices"]):
s += ", size%s" % indexChars[i]
s += ", stream, numInputEvents, inputEvents, outputEvent )"
return s
##############################################################################
# Min Naming / Solution and Kernel Writers
##############################################################################
def getSolutionAndKernelWriters(solutions, kernels):
# if any kernels are assembly, append every ISA supported
solutionSerialNaming = Solution.getSerialNaming(solutions)
kernelSerialNaming = Solution.getSerialNaming(kernels)
solutionMinNaming = Solution.getMinNaming(solutions)
kernelMinNaming = Solution.getMinNaming(kernels)
solutionWriter = SolutionWriter(solutionMinNaming, solutionSerialNaming, kernelMinNaming, kernelSerialNaming)
kernelWriterSource = KernelWriterSource(kernelMinNaming, kernelSerialNaming)
kernelWriterAssembly = KernelWriterAssembly(kernelMinNaming, kernelSerialNaming)
return (solutionWriter, kernelWriterSource, kernelWriterAssembly, kernelMinNaming, solutionMinNaming)
################################################################################
# copy static cpp files and headers
################################################################################
def copyStaticFiles(outputPath=None):
if outputPath is None:
outputPath = globalParameters["WorkingPath"]
libraryStaticFiles = [
"TensileTypes.h",
"tensile_bfloat16.h",
"KernelHeader.h" ]
for fileName in libraryStaticFiles:
# copy file
shutil.copy( os.path.join(globalParameters["SourcePath"], fileName), \
outputPath )
return libraryStaticFiles
def buildObjectFileNames(solutionWriter, kernelWriterSource, kernelWriterAssembly, solutions, kernels, kernelHelperObjs):
# Build lists of output object names
sourceKernelNames = []
asmKernelNames = []
kernelHelperObjNames = []
solutionFiles = []
sourceKernelFiles = []
asmKernelFiles = []
sourceLibFiles = []
asmLibFiles = []
sourceKernels = list([k for k in kernels if k['KernelLanguage'] == 'Source'])
asmKernels = list([k for k in kernels if k['KernelLanguage'] == 'Assembly'])
# Build a list of kernel object names.
for kernel in sourceKernels:
sourceKernelNames += [kernelWriterSource.getKernelFileBase(kernel)]
for kernel in asmKernels:
asmKernelNames += [kernelWriterAssembly.getKernelFileBase(kernel)]
kernelHelperObjNames = [ko.getKernelName() for ko in kernelHelperObjs]
cxxCompiler = globalParameters["CxxCompiler"]
# Source based kernels are built for all supported architectures
if (cxxCompiler == 'hipcc'):
sourceArchs, _ = splitArchs()
else:
raise RuntimeError("Unknown compiler %s" % cxxCompiler)
# Asm based kernels target the configured ISA
asmArchs = collections.defaultdict(list)
for (kernelName, kernel) in zip(asmKernelNames, asmKernels):
asmArchs[kernelName].append(gfxName(kernel['ISA']))
# Build a list of source files
if not globalParameters["MergeFiles"]:
for kernelName in (sourceKernelNames + asmKernelNames + kernelHelperObjNames):
sourceKernelFiles += [
"%s.h" % (kernelName),
"%s.cpp" % (kernelName)]
elif globalParameters["NumMergedFiles"] > 1:
for kernelIndex in range(0, globalParameters["NumMergedFiles"]):
sourceKernelFiles += [
"Kernels%s.h" % str(kernelIndex),
"Kernels%s.cpp" % str(kernelIndex)]
for kernelName in (kernelHelperObjNames):
sourceKernelFiles += [
"%s.h" % (kernelName),
"%s.cpp" % (kernelName)]
else:
sourceKernelFiles += ["Kernels.h", "Kernels.cpp"]
# Build a list of assembly files
for asmKernelName in asmKernelNames:
asmKernelFiles += [
"%s.s" % (asmKernelName),
"%s.o" % (asmKernelName),
"%s.co" % (asmKernelName)]
# Build a list of lib names from source
if not globalParameters["MergeFiles"]:
allSources = sourceKernelNames + kernelHelperObjNames
for kernelName in (allSources):
if (cxxCompiler == 'hipcc'):
sourceLibFiles += ["%s.so-000-%s.hsaco" % (kernelName, arch) for arch in sourceArchs]
else:
raise RuntimeError("Unknown compiler {}".format(cxxCompiler))
elif globalParameters["NumMergedFiles"] > 1:
if (cxxCompiler == 'hipcc'):
for kernelIndex in range(0, globalParameters["NumMergedFiles"]):
sourceLibFiles += ["Kernels%d.so-000-%s.hsaco" % (kernelIndex, arch) for arch in sourceArchs]
else:
raise RuntimeError("Unknown compiler {}".format(cxxCompiler))
elif globalParameters["LazyLibraryLoading"]:
fallbackLibs = list(set([kernel._state["codeObjectFile"] for kernel in kernels if "fallback" in kernel._state.get('codeObjectFile', "")]))
sourceLibFiles += ["{0}_{1}.hsaco".format(name, arch) for name, arch in itertools.product(fallbackLibs, sourceArchs)]
if (cxxCompiler == 'hipcc'):
sourceLibFiles += ["Kernels.so-000-%s.hsaco" % (arch) for arch in sourceArchs]
else: # Merge
if (cxxCompiler == 'hipcc'):
sourceLibFiles += ["Kernels.so-000-%s.hsaco" % (arch) for arch in sourceArchs]
else:
raise RuntimeError("Unknown compiler {}".format(cxxCompiler))
# Returns names for all xnack versions
def addxnack(name, ext):
arch = re.search(r"gfx.*$", name).group()
if arch in sourceArchs:
return [name+ext]
else:
return [name+xnack[len(arch):]+ext for xnack in sourceArchs if arch in xnack]
# Build a list of asm lib names
if globalParameters["LazyLibraryLoading"]:
# If assembly kernel with codeObjectFile specified
cond = lambda k : "codeObjectFile" in k._state \
and "fallback" not in k._state["codeObjectFile"] \
and k._state['KernelLanguage'] == "Assembly"
asmLibFiles += list(set([kernel._state["codeObjectFile"]+".co" for kernel in kernels if cond(kernel)]))
# If architecture specific source kernel with codeObjectFile specified
cond = lambda k : "codeObjectFile" in k._state \
and "fallback" not in k._state["codeObjectFile"] \
and k._state['KernelLanguage'] == "Source"
sourceLibFiles += list(set(itertools.chain.from_iterable(
[addxnack(kernel._state["codeObjectFile"], ".hsaco") for kernel in kernels if cond(kernel)]
)))
elif globalParameters["MergeFiles"]:
# Find all unique arch values for current asm kernels
uniqueArchs = set(itertools.chain(*asmArchs.values()))
asmLibFiles += ["TensileLibrary_%s.co" % (arch) for arch in uniqueArchs]
else:
for asmKernelName, archs in asmArchs.items():
asmLibFiles += ["%s_%s.co" % (asmKernelName, str(arch)) for arch in archs]
return (solutionFiles, sourceKernelFiles, asmKernelFiles, sourceLibFiles, asmLibFiles)
def buildObjectFilePaths(prefixDir, solutionFiles, sourceKernelFiles, asmKernelFiles, sourceLibFiles, asmLibFiles, masterLibraries):
solutionPaths = []
sourceKernelPaths = []
asmKernelPaths = []
sourceLibPaths = []
asmLibPaths = []
libMetadataPaths = []
# Build full paths for source kernel files
sourceKernelDir = ""
if not globalParameters["MergeFiles"] or globalParameters["NumMergedFiles"] > 1:
sourceKernelDir = os.path.join(prefixDir, "Kernels")
else:
sourceKernelDir = prefixDir
for sourceKernelFile in sourceKernelFiles:
sourceKernelPaths += [ os.path.join(sourceKernelDir, sourceKernelFile) ]
# Build full paths for asm kernel files
asmKernelDir = os.path.join(prefixDir, "assembly")
for asmKernelFile in asmKernelFiles:
asmKernelPaths += [ os.path.join(asmKernelDir, asmKernelFile) ]
# Build full paths for source and asm library files
libDir = os.path.join(prefixDir, "library")
libraryExt = ".yaml" if globalParameters["LibraryFormat"] == "yaml" else ".dat"
if not globalParameters["SeparateArchitectures"] and not globalParameters["LazyLibraryLoading"]:
libMetadataPaths = [ os.path.join(libDir, "TensileLibrary"+libraryExt) ]
for sourceLibFile in sourceLibFiles:
sourceLibPaths += [ os.path.join(libDir, sourceLibFile) ]
#Use set because of duplicate fallback libraries
newMetadataPaths = set()
for arch, lib in masterLibraries.items():
if globalParameters["LazyLibraryLoading"]:
newMetadataPaths.add(os.path.join(libDir, "TensileLibrary_lazy_"+arch+libraryExt))
else:
newMetadataPaths.add(os.path.join(libDir, "TensileLibrary_"+arch+libraryExt))
for name, placeholder in lib.lazyLibraries.items():
newMetadataPaths.add(os.path.join(libDir, name+libraryExt))
libMetadataPaths += list(newMetadataPaths)
for asmLibFile in asmLibFiles:
# Asm lib files are enumerated in the form of
# KernelName_gfxXXXXX.co
# Strip the gfxXXXX portion and use that as a subdirectory
asmLibFileNoExt = str(os.path.splitext(asmLibFile)[0])
asmArch = asmLibFileNoExt[asmLibFileNoExt.find("_gfx"):]
if globalParameters["PackageLibrary"]:
# asmArch contains _gfxXXXX. Don't use the underscore in new path
asmLibPaths += [ os.path.join(
libDir, asmArch[1:], asmLibFile.replace(asmArch, ''))]
else:
asmLibPaths += [ os.path.join(libDir, asmLibFile) ]
return (solutionPaths, sourceKernelPaths, asmKernelPaths, sourceLibPaths, asmLibPaths, libMetadataPaths)
################################################################################
# Write CMake
################################################################################
def writeCMake(outputPath, solutionFiles, kernelFiles, libraryStaticFiles, masterLibraries):
print1("# Writing Custom CMake")
# Build output file paths, using relative CMake symbol
cmakeSrcDir = "${CMAKE_SOURCE_DIR}"
(solutionPaths, sourceKernelPaths, asmKernelPaths, sourceLibPaths, asmLibPaths, _) = \
buildObjectFilePaths(cmakeSrcDir, solutionFiles, kernelFiles, [], [], [], masterLibraries)
# Build full paths the static library files
staticFilePaths = []
for staticFile in libraryStaticFiles:
staticFilePaths += [ os.path.join(cmakeSrcDir, staticFile) ]
# Proceed to generate cmake file
generatedFile = open(os.path.join(os.path.normcase(outputPath), "Generated.cmake"), "w")
generatedFile.write(CMakeHeader)
# write TensileClient_KERNELS symbol
generatedFile.write("set( TensileClient_KERNELS\n")
for kernelFile in sourceKernelPaths:
generatedFile.write(" %s\n" % (kernelFile))
generatedFile.write(" )\n")
# write TensileClient_SOURCE symbol
generatedFile.write("set( TensileClient_SOURCE\n")
for fileName in libraryStaticFiles:
generatedFile.write(" ${CMAKE_SOURCE_DIR}/%s\n" % fileName)
generatedFile.write(" )\n\n")
generatedFile.close()
################################################################################
# Generate Kernel Objects From Solutions
################################################################################
def generateKernelObjectsFromSolutions(solutions):
# create solution writer and kernel writer
kernels = []
kernelHelperObjs = []
kernelHelperNames = set()
for solution in solutions:
kernels += solution.getKernels()
solutionHelperKernels = solution.getHelperKernelObjects()
kernelHelperObjs += solutionHelperKernels
for ko in solutionHelperKernels:
kernelHelperNames.add(ko.getKernelName())
# remove duplicates while preserving order
kernels = list(dict.fromkeys(kernels))
kernelHelperObjs = list(dict.fromkeys(kernelHelperObjs))
return (kernels, kernelHelperObjs, kernelHelperNames)
################################################################################
# Generate Logic Data and Solutions
################################################################################
def generateLogicDataAndSolutions(logicFiles, args):
libraries = Common.ParallelMap(LibraryIO.parseLibraryLogicFile, logicFiles, "Reading logic files")
solutions = []
masterLibraries = {}
fullMasterLibrary = None
nextSolIndex = 0
for logic in Utils.tqdm(libraries, "Processing logic data"):
(_, architectureName, _, solutionsForSchedule, _, newLibrary) = logic
if globalParameters["PackageLibrary"]:
if architectureName in masterLibraries:
masterLibraries[architectureName].merge(deepcopy(newLibrary))
else:
masterLibraries[architectureName] = deepcopy(newLibrary)
masterLibraries[architectureName].version = args.version
elif globalParameters["SeparateArchitectures"] or globalParameters["LazyLibraryLoading"]:
if architectureName in masterLibraries:
nextSolIndex = masterLibraries[architectureName].merge(deepcopy(newLibrary), nextSolIndex)
else:
masterLibraries[architectureName] = deepcopy(newLibrary)
masterLibraries[architectureName].version = args.version
else:
if fullMasterLibrary is None:
fullMasterLibrary = deepcopy(newLibrary)
fullMasterLibrary.version = args.version
else:
fullMasterLibrary.merge(deepcopy(newLibrary))
# if problemType not in logicData:
# logicData[problemType] = []
# logicData[problemType].append((scheduleName, deviceNames, \
# solutionsForSchedule, indexOrder, exactLogic, rangeLogic ))
if globalParameters["SeparateArchitectures"] or globalParameters["LazyLibraryLoading"]:
if "fallback" in masterLibraries.keys():
for key, value in masterLibraries.items():
if key != "fallback":
value.merge(deepcopy(masterLibraries["fallback"]))
masterLibraries.pop("fallback")
for _, masterLibrary in masterLibraries.items():
for _, sol in masterLibrary.solutions.items():
solutions.append(sol.originalSolution)
for name, lib in masterLibrary.lazyLibraries.items():
for _, sol in lib.solutions.items():
sol.originalSolution._state["codeObjectFile"] = name
solutions.append(sol.originalSolution)
else:
for _, sol in fullMasterLibrary.solutions.items():
solutions.append(sol.originalSolution)
# remove duplicates while preserving order
solutions = list(dict.fromkeys(solutions))
return solutions, masterLibraries, fullMasterLibrary
################################################################################
# Write Benchmark Client Files
################################################################################
def writeBenchmarkClientFiles(libraryWorkingPath, tensileSourcePath, solutions, cxxCompiler):
if not globalParameters["GenerateSourcesAndExit"]:
copyStaticFiles(libraryWorkingPath)
kernels, kernelsBetaOnly, _ = generateKernelObjectsFromSolutions(solutions)
solutionWriter, kernelWriterSource, kernelWriterAssembly, \
kernelMinNaming, _ = getSolutionAndKernelWriters(solutions, kernels)
# write solution, kernels and CMake
problemType = solutions[0]["ProblemType"]
codeObjectFiles = writeSolutionsAndKernels( \
libraryWorkingPath, cxxCompiler, [problemType], solutions, kernels, kernelsBetaOnly, \
solutionWriter, kernelWriterSource, kernelWriterAssembly, errorTolerant=True )
newLibraryDir = ensurePath(os.path.join(libraryWorkingPath, 'library'))
newLibraryFile = os.path.join(newLibraryDir, "TensileLibrary.yaml")
newLibrary = MasterSolutionLibrary.BenchmarkingLibrary(solutions)
newLibrary.applyNaming(kernelMinNaming)
LibraryIO.writeYAML(newLibraryFile, Utils.state(newLibrary))
return (codeObjectFiles, newLibrary)
def WriteClientLibraryFromSolutions(solutionList, libraryWorkingPath, tensileSourcePath = None):
if tensileSourcePath == None:
tensileSourcePath = os.path.dirname(os.path.realpath(__file__))
firstSolution = deepcopy(solutionList[0])
problemType = firstSolution["ProblemType"].state
problemType["DataType"] = problemType["DataType"].value
problemType["DestDataType"] = problemType["DestDataType"].value
problemType["ComputeDataType"] = problemType["ComputeDataType"].value
cxxCompiler = globalParameters["CxxCompiler"]
effectiveWorkingPath = os.path.join(libraryWorkingPath, "library")
ensurePath(effectiveWorkingPath)
mataDataFilePath = os.path.join(effectiveWorkingPath, 'metadata.yaml')
metaData = {"ProblemType":problemType}
LibraryIO.writeYAML(mataDataFilePath, metaData)
codeObjectFiles, newLibrary = writeBenchmarkClientFiles(libraryWorkingPath, tensileSourcePath, solutionList, cxxCompiler )
return (codeObjectFiles, newLibrary)
################################################################################
# Tensile Create Library
################################################################################
def TensileCreateLibrary():
print1("")
print1(HR)
print1("# Tensile Create Library")
print2(HR)
print2("")
##############################################################################
# Parse Command Line Arguments
##############################################################################
def splitExtraParameters(par):
"""
Allows the --global-parameters option to specify any parameters from the command line.
"""
(key, value) = par.split("=")
value = eval(value)
return (key, value)
print2("Arguments: %s" % sys.argv)
argParser = argparse.ArgumentParser()
argParser.add_argument("LogicPath", help="Path to LibraryLogic.yaml files.")
argParser.add_argument("OutputPath", help="Where to write library files?")
argParser.add_argument("RuntimeLanguage", help="Which runtime language?", choices=["OCL", "HIP", "HSA"])
argParser.add_argument("--cxx-compiler", dest="CxxCompiler", choices=["hipcc"], action="store", default="hipcc")
argParser.add_argument("--cmake-cxx-compiler", dest="CmakeCxxCompiler", action="store")
argParser.add_argument("--code-object-version", dest="CodeObjectVersion", choices=["default", "V4", "V5"], action="store")
argParser.add_argument("--architecture", dest="Architecture", type=str, action="store", default="all", help="Supported archs: " + " ".join(architectureMap.keys()))
argParser.add_argument("--merge-files", dest="MergeFiles", action="store_true")
argParser.add_argument("--no-merge-files", dest="MergeFiles", action="store_false")
argParser.add_argument("--num-merged-files", dest="NumMergedFiles", type=int, default=1, help="Number of files the kernels should be written into.")
argParser.add_argument("--short-file-names", dest="ShortNames", action="store_true")
argParser.add_argument("--no-short-file-names", dest="ShortNames", action="store_false")
argParser.add_argument("--library-print-debug", dest="LibraryPrintDebug", action="store_true")
argParser.add_argument("--no-library-print-debug", dest="LibraryPrintDebug", action="store_false")
argParser.add_argument("--no-enumerate", action="store_true", help="Do not run rocm_agent_enumerator.")
argParser.add_argument("--package-library", dest="PackageLibrary", action="store_true", default=False)
argParser.add_argument("--embed-library", dest="EmbedLibrary",
help="Embed (new) library files into static variables. Specify the name of the library.")
argParser.add_argument("--embed-library-key", dest="EmbedLibraryKey", default=None,
help="Access key for embedding library files.")
argParser.add_argument("--version", help="Version string to embed into library file.")
argParser.add_argument("--generate-manifest-and-exit", dest="GenerateManifestAndExit", action="store_true",
default=False, help="Output manifest file with list of expected library objects and exit.")
argParser.add_argument("--library-format", dest="LibraryFormat", choices=["yaml", "msgpack"],
action="store", default="msgpack", help="select which library format to use")
argParser.add_argument("--generate-sources-and-exit", dest="GenerateSourcesAndExit", action="store_true",
default=False, help="Output source files only and exit.")
argParser.add_argument("--jobs", "-j", dest="CpuThreads", type=int,
default=-1, help="Number of parallel jobs to launch.")
argParser.add_argument("--verbose", "-v", dest="PrintLevel", type=int,
default=1, help="Set printout verbosity level.")
argParser.add_argument("--separate-architectures", dest="SeparateArchitectures", action="store_true",
default=False, help="Separates TensileLibrary file by architecture")
argParser.add_argument("--lazy-library-loading", dest="LazyLibraryLoading", action="store_true",
default=False, help="Loads Tensile libraries when needed instead of upfront.")
argParser.add_argument("--build-client", dest="BuildClient", action="store_true",
help="Build Tensile client")
argParser.add_argument("--client-config", dest="ClientConfig", action="store_true",
help="Create client config for setting the library and code object files")
argParser.add_argument("--global-parameters", nargs="+", type=splitExtraParameters, default=[])
argParser.add_argument("--ignore-asm-cap-cache", dest="IgnoreAsmCapCache", action="store_true", default=False,
help="Ignore asm cap cache and derive the asm caps at runtime")
args = argParser.parse_args()
logicPath = args.LogicPath
outputPath = args.OutputPath
CxxCompiler = args.CxxCompiler
libraryFormat = args.LibraryFormat
print2("OutputPath: %s" % outputPath)
ensurePath(outputPath)
outputPath = os.path.abspath(outputPath)
arguments = {}
arguments["RuntimeLanguage"] = args.RuntimeLanguage
arguments["CodeObjectVersion"] = args.CodeObjectVersion
arguments["Architecture"] = args.Architecture
arguments["SeparateArchitectures"] = args.SeparateArchitectures
arguments["LazyLibraryLoading"] = args.LazyLibraryLoading
arguments["CxxCompiler"] = args.CxxCompiler
if args.CmakeCxxCompiler:
os.environ["CMAKE_CXX_COMPILER"] = args.CmakeCxxCompiler
arguments["MergeFiles"] = args.MergeFiles
arguments["NumMergedFiles"] = args.NumMergedFiles
arguments["ShortNames"] = args.ShortNames
arguments["LibraryPrintDebug"] = args.LibraryPrintDebug
arguments["CodeFromFiles"] = False
arguments["EmbedLibrary"] = args.EmbedLibrary
arguments["LibraryFormat"] = args.LibraryFormat
if args.no_enumerate:
arguments["ROCmAgentEnumeratorPath"] = False
arguments["PackageLibrary"] = args.PackageLibrary
arguments["GenerateManifestAndExit"] = args.GenerateManifestAndExit
arguments["GenerateSourcesAndExit"] = args.GenerateSourcesAndExit
if arguments["GenerateSourcesAndExit"]:
# Generated sources are preserved and go into output dir
arguments["WorkingPath"] = outputPath
arguments["CpuThreads"] = args.CpuThreads
arguments["PrintLevel"] = args.PrintLevel
arguments["IgnoreAsmCapCache"] = args.IgnoreAsmCapCache
for key, value in args.global_parameters:
arguments[key] = value
assignGlobalParameters(arguments)
print1("# CodeObjectVersion from TensileCreateLibrary: %s" % arguments["CodeObjectVersion"])
print1("# CxxCompiler from TensileCreateLibrary: %s" % CxxCompiler)
print1("# Architecture from TensileCreateLibrary: %s" % arguments["Architecture"])
print1("# LibraryFormat from TensileCreateLibrary: %s" % libraryFormat)
if not os.path.exists(logicPath):
printExit("LogicPath %s doesn't exist" % logicPath)
if ";" in arguments["Architecture"]:
archs = arguments["Architecture"].split(";") # user arg list format
else:
archs = arguments["Architecture"].split("_") # workaround for cmake list in list issue
logicArchs = set()
for arch in archs:
if arch in architectureMap:
logicArchs.add(architectureMap[arch])
else:
printExit("Architecture %s not supported" % arch)
if globalParameters["LazyLibraryLoading"] and not (globalParameters["MergeFiles"] and globalParameters["SeparateArchitectures"]):
printExit("--lazy-library-loading requires --merge-files and --separate-architectures enabled")
# Recursive directory search
logicFiles = []
for root, dirs, files in os.walk(logicPath):
logicFiles += [os.path.join(root, f) for f in files
if os.path.splitext(f)[1]==".yaml" \
and (any(logicArch in os.path.splitext(f)[0] for logicArch in logicArchs) \
or "hip" in os.path.splitext(f)[0]) ]
print1("# LibraryLogicFiles:" % logicFiles)
for logicFile in logicFiles:
print1("# %s" % logicFile)
##############################################################################
# Parse config files
##############################################################################
# Parse logicData, solutions, and masterLibraries from logic files
solutions, masterLibraries, fullMasterLibrary = generateLogicDataAndSolutions(logicFiles, args)
kernels, kernelHelperObjs, _ = generateKernelObjectsFromSolutions(solutions)
# if any kernels are assembly, append every ISA supported
solutionWriter, kernelWriterSource, kernelWriterAssembly, \
kernelMinNaming, _ = getSolutionAndKernelWriters(solutions, kernels)
staticFiles = copyStaticFiles(outputPath)
# Build a list of files to be expected
(solutionFiles,
sourceKernelFiles,
asmKernelFiles,
sourceLibFiles,
asmLibFiles) = buildObjectFileNames(solutionWriter, kernelWriterSource, \
kernelWriterAssembly, solutions, kernels, kernelHelperObjs)
(_,
_,
_,
sourceLibPaths,
asmLibPaths,
libMetadataPaths) = buildObjectFilePaths(outputPath, solutionFiles, sourceKernelFiles, \
asmKernelFiles, sourceLibFiles, asmLibFiles, masterLibraries)
# Generate manifest file
libraryPath = os.path.join(outputPath, "library")
ensurePath(libraryPath)
generatedFile = open(os.path.join(libraryPath, "TensileManifest.txt"), "w")
# Manifest file contains YAML file, output library paths and cpp source for embedding.
for filePath in libMetadataPaths + sourceLibPaths + asmLibPaths:
generatedFile.write("%s\n" %(filePath) )
generatedFile.close()
if globalParameters["GenerateManifestAndExit"] == True:
return
# generate cmake for the source kernels,
if not arguments["GenerateSourcesAndExit"]:
writeCMake(outputPath, solutionFiles, sourceKernelFiles, staticFiles, masterLibraries)
# Make sure to copy the library static files.
for fileName in staticFiles:
shutil.copy( os.path.join(globalParameters["SourcePath"], fileName), \
outputPath )
# write solutions and kernels
codeObjectFiles = writeSolutionsAndKernels(outputPath, CxxCompiler, None, solutions,
kernels, kernelHelperObjs, solutionWriter, kernelWriterSource, kernelWriterAssembly)
bothLibSet = set(sourceLibPaths + asmLibPaths)
setA = set( map( os.path.normcase, set(codeObjectFiles) ) )
setB = set( map( os.path.normcase, bothLibSet ) )
sanityCheck0 = setA - setB
sanityCheck1 = setB - setA
if globalParameters["PrintCodeCommands"]:
print("codeObjectFiles:", codeObjectFiles)
print("sourceLibPaths + asmLibPaths:", sourceLibPaths + asmLibPaths)
assert len(sanityCheck0) == 0, "Unexpected code object files: {}".format(sanityCheck0)
if not globalParameters["GenerateSourcesAndExit"]:
assert len(sanityCheck1) == 0, "Missing expected code object files: {}".format(sanityCheck1)
archs = [gfxName(arch) for arch in globalParameters['SupportedISA'] \
if globalParameters["AsmCaps"][arch]["SupportedISA"]]
newLibraryDir = ensurePath(os.path.join(outputPath, 'library'))
if globalParameters["PackageLibrary"]:
for archName, newMasterLibrary in masterLibraries.items():
if (archName in archs):
archPath = ensurePath(os.path.join(newLibraryDir, archName))
masterFile = os.path.join(archPath, "TensileLibrary")
newMasterLibrary.applyNaming(kernelMinNaming)
LibraryIO.write(masterFile, Utils.state(newMasterLibrary), args.LibraryFormat)
elif globalParameters["SeparateArchitectures"] or globalParameters["LazyLibraryLoading"]:
for archName, newMasterLibrary in masterLibraries.items():
if archName in archs:
if globalParameters["LazyLibraryLoading"]:
masterFile = os.path.join(newLibraryDir, "TensileLibrary_lazy_"+archName)
else:
masterFile = os.path.join(newLibraryDir, "TensileLibrary_"+archName)
newMasterLibrary.applyNaming(kernelMinNaming)
LibraryIO.write(masterFile, Utils.state(newMasterLibrary), args.LibraryFormat)
#Write placeholder libraries
for name, lib in newMasterLibrary.lazyLibraries.items():
filename = os.path.join(newLibraryDir, name)
lib.applyNaming(kernelMinNaming) #@TODO Check to see if kernelMinNaming is correct
LibraryIO.write(filename, Utils.state(lib), args.LibraryFormat)
else:
masterFile = os.path.join(newLibraryDir, "TensileLibrary")
fullMasterLibrary.applyNaming(kernelMinNaming)
LibraryIO.write(masterFile, Utils.state(fullMasterLibrary), args.LibraryFormat)
theMasterLibrary = fullMasterLibrary
if globalParameters["PackageLibrary"] or globalParameters["SeparateArchitectures"]:
theMasterLibrary = list(masterLibraries.values())[0]
if args.EmbedLibrary is not None:
embedFileName = os.path.join(outputPath, "library/{}.cpp".format(args.EmbedLibrary))
with EmbeddedData.EmbeddedDataFile(embedFileName) as embedFile:
ext = ".yaml" if globalParameters["LibraryFormat"] == "yaml" else ".dat"
embedFile.embed_file(theMasterLibrary.cpp_base_class, masterFile + ext, nullTerminated=True,
key=args.EmbedLibraryKey)
for co in Utils.tqdm(codeObjectFiles):
embedFile.embed_file("SolutionAdapter", co, nullTerminated=False,
key=args.EmbedLibraryKey)
if args.BuildClient:
print1("# Building Tensile Client")
ClientExecutable.getClientExecutable(outputPath)
if args.ClientConfig:
# write simple ini for best solution mode linked to library we just made
iniFile = os.path.join(outputPath, "best-solution.ini")
with open(iniFile, "w") as f:
def param(key, value):
f.write("{}={}\n".format(key, value))
libraryFile = masterFile + ".yaml" \
if globalParameters["LibraryFormat"] == "yaml" else masterFile + ".dat"
param("library-file", libraryFile)
for coFile in codeObjectFiles:
param("code-object", os.path.join(outputPath,coFile))
param("best-solution", True)
print1("# Tensile Library Writer DONE")
print1(HR)
print1("")
|