CUDA Ontology

This page summarizes the projects mentioned and recommended in the original post on news.ycombinator.com

Stream - Scalable APIs for Chat, Feeds, Moderation, & Video.
Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure.
getstream.io
featured
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com
featured
  1. cuda-api-wrappers

    Thin C++-flavored header-only wrappers for core CUDA APIs: Runtime, Driver, NVRTC, NVTX.

    > CUDA Runtime: The runtime library (libcudart) that applications link against.

    That library is actually a rather poor idea. If you're writing a CUDA application, I strongly recommend avoiding the "runtime API". It provides partial access to the actual CUDA driver and its API, which is 'simpler' in the sense that you don't explicitly create "contexts", but:

    * It hides or limits a lot of the functionality.

    * Its actual behavior vis-a-vis contexts is not at all simple and is likely to make your life more difficult down the road.

    * It's not some clean interface that's much more convenient to use.

    So, either go with the driver, or consider my CUDA API wrappers library [1], which _does_ offer a clean, unified, modern (well, C++11'ish) RAII/CADRe interface. And it covers much more than the runtime API, to boot: JIT compilation of CUDA (nvrtc) and PTX (nvptx_compiler), profiling (nvtx), etc.

    [1] : https://github.com/eyalroz/cuda-api-wrappers/

  2. Stream

    Stream - Scalable APIs for Chat, Feeds, Moderation, & Video. Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure.

    Stream logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • The Missing Nvidia GPU Glossary

    1 project | news.ycombinator.com | 14 Jan 2025
  • How CUDA Programming Works

    1 project | news.ycombinator.com | 5 Jul 2022
  • are there communities for cuda devs so we can talk and grow together?

    1 project | /r/CUDA | 24 Jun 2022
  • Thin C++-Flavored Wrappers for the CUDA APIs: Runtime, Driver, Nvrtc and NVTX

    1 project | news.ycombinator.com | 22 Jun 2022
  • The Success and Failure of Ninja (2020)

    5 projects | news.ycombinator.com | 28 Nov 2024

Did you know that C++ is
the 7th most popular programming language
based on number of references?