[PLDI24] Descend: A Safe GPU Systems Programming Language

Поділитися
Вставка
  • Опубліковано 29 вер 2024
  • Descend: A Safe GPU Systems Programming Language (Video, PLDI 2024)
    Bastian Köpcke, Sergei Gorlatch, and Michel Steuwer
    (University of Münster, Germany; University of Münster, Germany; TU Berlin, Germany)
    Abstract: Graphics Processing Units (GPU) offer tremendous computational power by following a throughput oriented paradigm where many thousand computational units operate in parallel. Programming such massively parallel hardware is challenging. Programmers must correctly and efficiently coordinate thousands of threads and their accesses to various shared memory spaces. Existing mainstream GPU programming languages, such as CUDA and OpenCL, are based on C/C++ inheriting their fundamentally unsafe ways to access memory via raw pointers. This facilitates easy to make, but hard to detect bugs, such as data races and deadlocks. In this paper, we present Descend: a safe GPU programming language. In contrast to prior safe high-level GPU programming approaches, Descend is an imperative GPU systems programming language in the spirit of Rust, enforcing safe CPU and GPU memory management in the type system by tracking Ownership and Lifetimes. Descend introduces a new holistic GPU programming model where computations are hierarchically scheduled over the GPU’s execution resources: grid, blocks, warps, and threads. Descend’s extended Borrow checking ensures that execution resources safely access memory regions without data races. For this, we introduced views describing safe parallel access patterns of memory regions, as well as atomic variables. For memory accesses that can’t be checked by our type system, users can annotate limited code sections as unsafe. We discuss the memory safety guarantees offered by Descend and evaluate our implementation using multiple benchmarks, demonstrating that Descend is capable of expressing real-world GPU programs showing competitive performance compared to manually written CUDA programs lacking Descend’s safety guarantees.
    Article: doi.org/10.114...
    ORCID: orcid.org/0000..., orcid.org/0000..., orcid.org/0000...
    Video Tags: GPU programming, language design, memory safety, type systems, pldi24main-p187-p, doi:10.1145/3656411, orcid:0000-0001-5271-6893, orcid:0000-0003-3857-9380, orcid:0000-0001-5048-0741
    Presentation at the PLDI 2024 conference, June 24-28, 2024, pldi24.sigplan...
    Sponsored by ACM SIGPLAN,

КОМЕНТАРІ • 1

  • @flow-xx8dx
    @flow-xx8dx 2 місяці тому

    let's descend into the madness of reimplantation!