[PATCH] D81176: [HIP] Add default header and include path
Yaxun Liu via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Jun 5 08:18:39 PDT 2020
yaxunl marked 6 inline comments as done.
yaxunl added inline comments.
================
Comment at: clang/lib/Driver/ToolChains/ROCm.h:68
+
+ // CUDA architectures for which we have raised an error in
+ // CheckRocmVersionSupportsArch.
----------------
tra wrote:
> CUDA -> GPU?
> Looks like there are number of other mentions of CUDA that should be fixed.
will fix when commit
================
Comment at: clang/lib/Headers/__clang_hip_math.h:26
+__DEVICE__
+inline uint64_t __make_mantissa_base8(const char *tagp) {
+ uint64_t r = 0;
----------------
tra wrote:
> Arguments for compiler-internal declarations and local symbols should all be prefixed with `__`.
>
will fix when committing
================
Comment at: clang/lib/Headers/__clang_hip_math.h:931-935
+#pragma push_macro("__DEF_FLOAT_FUN")
+#pragma push_macro("__DEF_FLOAT_FUN2")
+#pragma push_macro("__DEF_FLOAT_FUN2I")
+#pragma push_macro("__HIP_OVERLOAD")
+#pragma push_macro("__HIP_OVERLOAD2")
----------------
tra wrote:
> The macros pushed here do not match the set of macros defined below.
> E.g. `__HIP_OVERLOAD` vs `__HIP_OVERLOAD1`, `__DEF_FLOAT_FUN` vs. `__DEF_FUN1`, etc.
will fix when commit
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D81176/new/
https://reviews.llvm.org/D81176
More information about the cfe-commits
mailing list