[libc-commits] [libc] 62a2a07 - [libc][Docs] Add warning about running GPU tests with parallelism

Joseph Huber via libc-commits libc-commits at lists.llvm.org
Thu May 4 08:18:14 PDT 2023


Author: Joseph Huber
Date: 2023-05-04T10:18:06-05:00
New Revision: 62a2a07cbe3f8bf5faee8ab03428fd6047ba6b21

URL: https://github.com/llvm/llvm-project/commit/62a2a07cbe3f8bf5faee8ab03428fd6047ba6b21
DIFF: https://github.com/llvm/llvm-project/commit/62a2a07cbe3f8bf5faee8ab03428fd6047ba6b21.diff

LOG: [libc][Docs] Add warning about running GPU tests with parallelism

Now that a large amount of GPU tests can be run in parallel, we should
document spurious failures. It is a well-known issue that launching many
GPU applications in parallel can lead to various problems, the worst of
which being an indefinite hang.

Differential Revision: https://reviews.llvm.org/D149857

Added: 
    

Modified: 
    libc/docs/gpu/testing.rst

Removed: 
    


################################################################################
diff  --git a/libc/docs/gpu/testing.rst b/libc/docs/gpu/testing.rst
index 09e875aea136..376a51ec8067 100644
--- a/libc/docs/gpu/testing.rst
+++ b/libc/docs/gpu/testing.rst
@@ -5,6 +5,11 @@
 Testing the GPU libc library
 ============================
 
+.. note::
+   Running GPU tests with high parallelism is likely to cause spurious failures,
+   out of resource errors, or indefinate hangs. limiting the number of threads 
+   used while testing is highly recommended.
+
 .. contents:: Table of Contents
   :depth: 4
   :local:


        


More information about the libc-commits mailing list