[llvm] [Offload][AMDGPU] accept generic target (PR #118919)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Dec 6 17:13:13 PST 2024
================
@@ -3207,13 +3209,17 @@ struct AMDGPUPluginTy final : public GenericPluginTy {
if (!Processor)
return false;
- auto TargeTripleAndFeaturesOrError =
- hsa_utils::getTargetTripleAndFeatures(getKernelAgent(DeviceId));
- if (!TargeTripleAndFeaturesOrError)
- return TargeTripleAndFeaturesOrError.takeError();
- return offloading::amdgpu::isImageCompatibleWithEnv(
- Processor ? *Processor : "", ElfOrErr->getPlatformFlags(),
- *TargeTripleAndFeaturesOrError);
+ SmallVector<std::string> Targets;
+ Targets.push_back("");
----------------
hidekisaito wrote:
No longer applicable.
https://github.com/llvm/llvm-project/pull/118919
More information about the llvm-commits
mailing list