From d8f184ce087773becdb0db40993279b2311b0570 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Tue, 27 Aug 2024 15:25:00 +0200 Subject: [PATCH] docs: add link to GPU examples --- README.md | 2 +- gpu/README.md | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 gpu/README.md diff --git a/README.md b/README.md index fd602174..1ece082e 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ This repository contains notes and code examples related to AI. * [Linear-regression](./notes/linear-regression.md) * [Copilot notes](./notes/copilot.md) * [Rust AI/ML crates](./notes/rust.md) -* [Symbols](./notes/symbols.md) +* [GPUs](./gpu/README.md) ### Examples/Exploration code diff --git a/gpu/README.md b/gpu/README.md new file mode 100644 index 00000000..f934cee3 --- /dev/null +++ b/gpu/README.md @@ -0,0 +1,8 @@ +## GPU + +### Examples/Exploration code +* [CUDA](./cuda) CUDA examples in C++ +* [OpenCL](./opencl/README.md) OpenCL examples +* [Vulkan](./vulkan/README.md) Vulkan examples +* [Kompute](./kompute/README.md) Kompute examples +* [ROCm](./rocm/README.md) ROCm examples