From 95fdad1d2d539a6a894f86de90dc50c6a1fb8f3e Mon Sep 17 00:00:00 2001 From: Francesco Iannelli <54247008+frjnn@users.noreply.github.com> Date: Mon, 14 Mar 2022 16:17:06 +0100 Subject: [PATCH] Chore: Adds cudnn to crate lineup --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index eddbc6c6..68b16043 100644 --- a/README.md +++ b/README.md @@ -54,6 +54,7 @@ The current line-up of libraries is the following: - `cuda_std` for GPU-side functions and utilities, such as thread index queries, memory allocation, warp intrinsics, etc. - *Not* a low level library, provides many utility functions to make it easier to write cleaner and more reliable GPU kernels. - Closely tied to `rustc_codegen_nvvm` which exposes GPU features through it internally. +- [`cudnn`](https://github.com/Rust-GPU/Rust-CUDA/tree/master/crates/cudnn) for a collection of GPU-accelerated primitives for deep neural networks. - `cust` for CPU-side CUDA features such as launching GPU kernels, GPU memory allocation, device queries, etc. - High level with features such as RAII and Rust Results that make it easier and cleaner to manage the interface to the GPU. - A high level wrapper for the CUDA Driver API, the lower level version of the more common CUDA Runtime API used from C++.