[PATCH] D95007: [CUDA][HIP] Add -fuse-cuid
Yaxun Liu via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Feb 8 18:41:31 PST 2021
yaxunl marked 2 inline comments as done.
yaxunl added inline comments.
================
Comment at: clang/test/Driver/hip-cuid.hip:98
+
+// RUN: rm -rf %t.out
+
----------------
tra wrote:
> Is it necessary? The next 'RUN' command would overwrite the temp file anyways.
> Also, you don't have to call all temporary files `%t.out`. You could use `%t-1.out`, etc and leave the cleanup to the test driver.
will remove rm.
================
Comment at: clang/test/Driver/hip-cuid.hip:100-102
+// RUN: %clang -### -x hip -target x86_64-unknown-linux-gnu \
+// RUN: --offload-arch=gfx906 -c -nogpulib -fuse-cuid=hash \
+// RUN: %S/Inputs/hip_multiple_inputs/a.cu >%t.out 2>&1
----------------
tra wrote:
> Putting `RUN` down in the test file makes them easy to miss. Maybe these should be in their own `hip-cuid-rdc.hip` test structured in a conventional way -- RUN lines first, followed by checks.
will split the test
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D95007/new/
https://reviews.llvm.org/D95007
More information about the cfe-commits
mailing list