Rust CUDA and shared memory

This page summarizes the projects mentioned and recommended in the original post on /r/rust

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
  • Rust-CUDA

    Ecosystem of libraries and tools for writing and executing fast GPU code fully in Rust.

  • We actually have static and dynamic shared memory now. Rust is perfectly able to express CUDA shared memory. What it is NOT able to do is do so very safely. shared memory is the pinnacle of "holy crap this is unsafe", it is basically impossible to check static shared memory usage for safety. Our best bet is: - Encouraging users to run compute-sanitizer (new cuda-memcheck) - Removing as much raw shared mem usage as possible by making abstractions.

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB 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