[PATCH] D82930: [HIP] Fix rocm detection
Yaxun Liu via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Jul 1 09:42:48 PDT 2020
yaxunl marked an inline comment as done.
yaxunl added inline comments.
================
Comment at: clang/lib/Driver/ToolChains/AMDGPU.cpp:167
+ llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>> VersionFile =
+ FS.getBufferForFile(BinPath + "/.hipVersion");
+ if (!VersionFile)
----------------
arsenm wrote:
> I don't think the detection should fail if this is missing
why? this file is unique to HIP installation. If it is missing, the installation is broken.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D82930/new/
https://reviews.llvm.org/D82930
More information about the cfe-commits
mailing list