25660

Unified Shader Programming in C++

Kerry A. Seitz Jr., Theresa Foley, Serban D. Porumbescu, John D. Owens
University of California, Davis, USA
arXiv:2109.14682 [cs.GR], (29 Sep 2021)

@misc{seitz2021unified,

   title={Unified Shader Programming in C++},

   author={Kerry A. Seitz Jr. au2 and Theresa Foley and Serban D. Porumbescu and John D. Owens},

   year={2021},

   eprint={2109.14682},

   archivePrefix={arXiv},

   primaryClass={cs.GR}

}

Download Download (PDF)   View View   Source Source   

1240

views

In real-time graphics, the strict separation of programming languages and environments for host (CPU) code and GPU code results in code duplication, subtle compatibility bugs, and additional development and maintenance costs. In contrast, popular general-purpose GPU (GPGPU) programming models like CUDA and C++ AMP avoid many of these issues by presenting unified programming environments where both host and GPU code are written in the same language, can be in the same file, and share lexical scopes. To bring the benefits of unified programming to real-time graphics, this paper examines graphics-specific challenges that complicate the development of such a unified model and explores how to overcome them in a widely used programming language. We observe that GPU code specialization, a key optimization in real-time graphics, requires coordination between parameters that are compile-time-constant in GPU code but are assigned values at runtime in host code based on dynamic data. Current methods used to implement specialization do not translate to a unified environment where host and GPU code share declarations of these parameters. Furthermore, this compile-time vs. runtime coordination is not innately expressible in the popular languages used in this domain. In this paper, we create a unified environment for real-time graphics programming in C++ by co-opting existing features of the language and implementing them with alternate semantics to express the services required. Specifically, we co-opt C++ attributes and virtual functions, which enables us to provide first-class support for specialization in our unified system. By co-opting existing features, we enable programmers to use familiar C++ programming techniques to write host and GPU code together, while still achieving efficient generated C++ and HLSL code via our source-to-source translator.
No votes yet.
Please wait...

* * *

* * *

HGPU group © 2010-2024 hgpu.org

All rights belong to the respective authors

Contact us: