From 8b78414780cf26234c10cfd3458e70d6edfc0f0b Mon Sep 17 00:00:00 2001 From: Ben Ashbaugh Date: Wed, 9 Jul 2025 15:30:55 -0700 Subject: [PATCH] fix the float atomics blog link --- samples/16_floatatomics/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/16_floatatomics/README.md b/samples/16_floatatomics/README.md index c3cddd5..c329c23 100644 --- a/samples/16_floatatomics/README.md +++ b/samples/16_floatatomics/README.md @@ -17,7 +17,7 @@ This sample also includes fallback implementations when the `cl_ext_float_atomic * The second emulates the floating-point atomic add using 32-bit `atomic_cmpxchg` functions. This is a slower emulation, but it is able to reliably return the "old" value that was in memory before performing the atomic add. -This sample was inspired by the blog post: https://pipinspace.github.io/blog/atomic-float-addition-in-opencl.html +This sample was inspired by the blog post: https://violetspace.github.io/blog/atomic-float-addition-in-opencl.html ## Key APIs and Concepts