[libc-commits] [libc] [libc][docs] add page linking to talks (PR #84393)

Nick Desaulniers via libc-commits libc-commits at lists.llvm.org
Thu Mar 7 14:50:03 PST 2024


https://github.com/nickdesaulniers updated https://github.com/llvm/llvm-project/pull/84393

>From 346ad7e5ad5b9c1598b04e484c358ab6af21470a Mon Sep 17 00:00:00 2001
From: Nick Desaulniers <ndesaulniers at google.com>
Date: Thu, 7 Mar 2024 14:32:00 -0800
Subject: [PATCH 1/2] [libc][docs] add page linking to talks

---
 libc/docs/index.rst |  1 +
 libc/docs/talks.rst | 29 +++++++++++++++++++++++++++++
 2 files changed, 30 insertions(+)
 create mode 100644 libc/docs/talks.rst

diff --git a/libc/docs/index.rst b/libc/docs/index.rst
index a50eb080c9ee49..370fcd843974e8 100644
--- a/libc/docs/index.rst
+++ b/libc/docs/index.rst
@@ -78,6 +78,7 @@ stages there is no ABI stability in any form.
    dev/index.rst
    porting
    contributing
+   talks
 
 .. toctree::
    :hidden:
diff --git a/libc/docs/talks.rst b/libc/docs/talks.rst
new file mode 100644
index 00000000000000..292a1e5b4d7046
--- /dev/null
+++ b/libc/docs/talks.rst
@@ -0,0 +1,29 @@
+=====
+Talks
+=====
+----
+2023
+----
+* Math functions in LLVM libc or yet another correctly rounded libm - Tue Ly
+
+  * `video <https://www.youtube.com/watch?v=kBSJqVWNQLY>`__
+* The LLVM C Library for GPUs - Joseph Huber
+
+  * `slides <https://llvm.org/devmtg/2023-10/slides/techtalks/Huber-LibCforGPUs.pdf>`__
+  * `video <https://www.youtube.com/watch?v=_LLGc48GYHc>`__
+
+----
+2022
+----
+* Using LLVM's libc - Sivachandra Reddy, Michael Jones, Tue Ly
+
+  * `slides <https://llvm.org/devmtg/2022-11/slides/Tutorial1-UsingLLVM-libc.pdf>`__
+  * `video <https://www.youtube.com/watch?v>`__
+* Using modern CPU instructions to improve LLVM's libc math library - Tue Ly
+
+  * `slides <https://llvm.org/devmtg/2022-11/slides/QuickTalk7-UsingModernCPUInstructionsToImproveLLVM-libcMathLib>`__
+  * `video <https://www.youtube.com/watch?v=9bvdbdn0nMA>`__
+* Approximating at Scale: How strto float in LLVM’s libc is faster - Michael Jones
+
+  * `slides <https://llvm.org/devmtg/2022-11/slides/QuickTalk3-ApproximatingatScale-StringToFloat.pdf>`__
+  * `video <https://www.youtube.com/watch?v=s-UjbTV8p6g>`__

>From 532831eeba055a49a8f05f7905987055adbc3417 Mon Sep 17 00:00:00 2001
From: Nick Desaulniers <ndesaulniers at google.com>
Date: Thu, 7 Mar 2024 14:49:52 -0800
Subject: [PATCH 2/2] fix broken link

---
 libc/docs/talks.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libc/docs/talks.rst b/libc/docs/talks.rst
index 292a1e5b4d7046..6daae9f1e7b69a 100644
--- a/libc/docs/talks.rst
+++ b/libc/docs/talks.rst
@@ -18,7 +18,7 @@ Talks
 * Using LLVM's libc - Sivachandra Reddy, Michael Jones, Tue Ly
 
   * `slides <https://llvm.org/devmtg/2022-11/slides/Tutorial1-UsingLLVM-libc.pdf>`__
-  * `video <https://www.youtube.com/watch?v>`__
+  * `video <https://www.youtube.com/watch?v=OpY4lnpnbq4>`__
 * Using modern CPU instructions to improve LLVM's libc math library - Tue Ly
 
   * `slides <https://llvm.org/devmtg/2022-11/slides/QuickTalk7-UsingModernCPUInstructionsToImproveLLVM-libcMathLib>`__



More information about the libc-commits mailing list