summaryrefslogtreecommitdiff
blob: eda9b0307c525f900c2001573f9729f15b56a4e5 (plain)
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
Fix incorrect path in scripts and CMakeLists, in order to build tensile_client 
===================================================================
Index: Tensile-rocm-5.4.2/Tensile/Source/lib/CMakeLists.txt
===================================================================
--- Tensile-rocm-5.4.2.orig/Tensile/Source/lib/CMakeLists.txt
+++ Tensile-rocm-5.4.2/Tensile/Source/lib/CMakeLists.txt
@@ -51,7 +51,7 @@ set(tensile_sources  ${tensile_sources}
     )
 
 if(TENSILE_USE_LLVM)
-    find_package(LLVM 13.0 QUIET CONFIG)
+    find_package(LLVM PATHS @LLVM_PATH@ QUIET CONFIG)
     if(NOT LLVM_FOUND)
         find_package(LLVM 12.0 QUIET CONFIG)
         if(NOT LLVM_FOUND)
Index: Tensile-rocm-5.4.2/Tensile/Common.py
===================================================================
--- Tensile-rocm-5.4.2.orig/Tensile/Common.py
+++ Tensile-rocm-5.4.2/Tensile/Common.py
@@ -1950,7 +1950,7 @@ def assignGlobalParameters( config ):
     else:
       print2(" %24s: %8s (unspecified)" % (key, defaultValue))
 
-  globalParameters["ROCmPath"] = "/opt/rocm"
+  globalParameters["ROCmPath"] = "@GENTOO_PORTAGE_EPREFIX@/usr"
   if "ROCM_PATH" in os.environ:
     globalParameters["ROCmPath"] = os.environ.get("ROCM_PATH")
   if "TENSILE_ROCM_PATH" in os.environ:
Index: Tensile-rocm-5.4.2/Tensile/ClientWriter.py
===================================================================
--- Tensile-rocm-5.4.2.orig/Tensile/ClientWriter.py
+++ Tensile-rocm-5.4.2/Tensile/ClientWriter.py
@@ -180,7 +180,7 @@ def runClient(libraryLogicPath, forBench
 def getBuildClientLibraryScript(buildPath, libraryLogicPath):
   callCreateLibraryCmd = ["python"] if os.name == "nt" else []
 
-  callCreateLibraryCmd += [os.path.join(globalParameters["ScriptPath"] , "bin", "TensileCreateLibrary")]
+  callCreateLibraryCmd += ["TensileCreateLibrary"]
 
   if globalParameters["MergeFiles"]:
     callCreateLibraryCmd += ["--merge-files"]
Index: Tensile-rocm-5.4.2/Tensile/GenerateSummations.py
===================================================================
--- Tensile-rocm-5.4.2.orig/Tensile/GenerateSummations.py
+++ Tensile-rocm-5.4.2/Tensile/GenerateSummations.py
@@ -59,7 +59,7 @@ def createLibraryForBenchmark(logicPath,
     Selection.
     """
 
-    pythonExePath = os.path.join(os.path.dirname(os.path.realpath(__file__)), "bin", "TensileCreateLibrary")
+    pythonExePath = "TensileCreateLibrary"
     args = [pythonExePath, \
         "--merge-files", "--new-client-only", "--no-short-file-names", "--no-library-print-debug", \
         "--architecture=all", "--code-object-version=V3", "--cxx-compiler=hipcc", "--library-format=yaml", \
Index: Tensile-rocm-5.4.2/HostLibraryTests/CMakeLists.txt
===================================================================
--- Tensile-rocm-5.4.2.orig/HostLibraryTests/CMakeLists.txt
+++ Tensile-rocm-5.4.2/HostLibraryTests/CMakeLists.txt
@@ -139,7 +139,7 @@ set(test_sources ${test_sources}
 )
 
 if(TENSILE_USE_LLVM)
-    find_package(LLVM 13.0 QUIET CONFIG)
+    find_package(LLVM PATHS @LLVM_PATH@ QUIET CONFIG)
     if(NOT LLVM_FOUND)
         find_package(LLVM 12.0 QUIET CONFIG)
         if(NOT LLVM_FOUND)