From 2fea528dbba7a21a762a5d5f3d4464fa81f75d1e Mon Sep 17 00:00:00 2001 From: Eyal Rozenberg Date: Wed, 2 Dec 2020 20:56:51 +0200 Subject: [PATCH] Added cuda-api-wrappers to the concurrency section CUDA is a richer, though vendor-specific, alternative for working with GPUs - with several entries in this list already. And while it lets you write modern C++ code on the GPU side - its host-side API is C-style, clunky and annoying. cuda-api-wrappers makes it awesomely-C++'ish. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 7a5f8a3..1e22be7 100644 --- a/README.md +++ b/README.md @@ -248,6 +248,7 @@ A curated list of awesome C++ (or C) frameworks, libraries, resources, and shiny * [concurrentqueue](https://github.com/cameron314/concurrentqueue) - A fast multi-producer, multi-consumer lock-free concurrent queue for C++11. [BSD,Boost] * [Cpp-Taskflow](https://github.com/cpp-taskflow/cpp-taskflow) - Fast C++ Parallel Programming with Task Dependencies. [MIT] * [CUB](https://github.com/NVlabs/cub) - CUB provides state-of-the-art, reusable software components for every layer of the CUDA programming mode. [New BSD] +* [cuda-api-wrappers](https://github.com/eyalroz/cuda-api-wrappers) - Lightweight, Modern-C++ wrappers for the CUDA GPU programming runtime API. [BSD] * [cupla](https://github.com/ComputationalRadiationPhysics/cupla) - C++ API to run CUDA/C++ on OpenMP, Threads, TBB, ... through Alpaka. [LGPLv3+] * [C++React](https://github.com/schlangster/cpp.react) - A reactive programming library for C++11. [Boost] * [FiberTaskingLib](https://github.com/RichieSams/FiberTaskingLib) - Task-based multi-threading library that supports task graphs with arbitrary dependencies. [Apache]