[llvm] [Offload][AMDGPU] accept generic target (PR #118919)

via llvm-commits llvm-commits at lists.llvm.org
Thu Dec 5 22:11:51 PST 2024


================
@@ -205,13 +205,16 @@ Expected<std::string> getTargetTripleAndFeatures(hsa_agent_t Agent) {
       return Status;
 
     llvm::StringRef TripleTarget(ISAName.begin(), Length);
-    if (TripleTarget.consume_front("amdgcn-amd-amdhsa"))
-      Target = TripleTarget.ltrim('-').rtrim('\0').str();
-    return HSA_STATUS_INFO_BREAK;
+    if (TripleTarget.consume_front("amdgcn-amd-amdhsa")) {
+      auto Target = TripleTarget.ltrim('-').rtrim('\0').str();
+      if (Target.find("generic") != std::string::npos)
----------------
hidekisaito wrote:

If we can assume one (and only one) specific ISA and zero or more generic ISAs, we can change the incoming parameter to GenericTargets and use SpecificTarget as a return value. That may be a cleaner approach. What do you think? 

https://github.com/llvm/llvm-project/pull/118919


More information about the llvm-commits mailing list