[Openmp-commits] [openmp] [OpenMP] Enable automatic unified shared memory on MI300A. (PR #77512)
Joseph Huber via Openmp-commits
openmp-commits at lists.llvm.org
Tue Jan 9 19:15:19 PST 2024
================
@@ -2728,6 +2749,30 @@ struct AMDGPUDeviceTy : public GenericDeviceTy, AMDGenericDeviceTy {
return Err;
}
+ /// Detect if current architecture is an APU.
+ Error checkIfAPU() {
+ std::string StrGfxName(ComputeUnitKind);
+ std::transform(std::begin(StrGfxName), std::end(StrGfxName),
+ std::begin(StrGfxName),
+ [](char c) { return std::tolower(c); });
+ if (StrGfxName == "gfx940") {
----------------
jhuber6 wrote:
This is pretty gross, I really wish this was exposed in a non-string way if it's not. If there's no way to make this any better just use a `StringSwitch`.
https://github.com/llvm/llvm-project/pull/77512
More information about the Openmp-commits
mailing list