Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Standard Portable Intermediate Representation

From Wikipedia, the free encyclopedia
Internal code for computer graphics
SPIR-V
DeveloperKhronos Group
Initial release2015
Stable release
SPIR-V 1.6 / December 16, 2021; 4 years ago (2021-12-16)
Operating systemCross-platform
PlatformCross-platform
TypeIntermediate language
Websitewww.khronos.org/registry/SPIR-V

Standard Portable Intermediate Representation (SPIR) is anintermediate language forparallel computing and graphics byKhronos Group. It is used in multiple execution environments, including theVulkangraphics API and theOpenCL compute API, to represent ashader orkernel. It is also used as an interchange language for cross compilation.[1][2]

SPIR-V is a new version of SPIR which was introduced in 2015 by theKhronos Group, and has since replaced the original SPIR, which was introduced in 2012.

On September 19th 2024, Microsoft has announced plans to adopt SPIR-V as theDirect3D Interchange format in place of DXIL, beginning support from Shader Model 7 on.[3]

Purpose

[edit]

The purposes of SPIR-V are to natively represent the primitives needed by compute and graphics; to separate high-level language from the interface to compute and graphics drivers; to be the distribution form, or distribute fully compiled binaries; to be a fully self-contained specification; and to support multiple APIs. It is also used as an intermediate target for cross-compilation tools.

For example, SPIR-V allows theVulkan API to use anyshading language, includingGLSL andHLSL.[4][5] SPIR-V can bedecompiled into several shading languages (GLSL,GLSL ES,MSL,HLSL) using SPIRV-Cross, so that these languages can be interconverted.[6] It also has paths to and/or fromWebGPU,OpenCL,SYCL,C++, andRust.

In target platforms, ingesting SPIR-V removes the need to build a high-level language source compiler into device drivers, which reduces driver complexity.[2]

Versions

[edit]

SPIR was originally introduced in 2011 and SPIR-V was introduced in 2015.

SPIR and SPIR-V
SPIR 1.2SPIR 2.0SPIR-V 1.X
LLVM InteractionLLVM IR version 3.2LLVM IR version 3.4
100% Khronos defined
Round-trip lossless conversion
Compute ConstructsMetadata/IntrinsicsMetadata/IntrinsicsNative
Graphics ConstructsNoNoNative
Supported Language & Feature SupportedOpenCL C 1.2
OpenCL C 1.2
OpenCL C 2.0
OpenCL C 1.2 / 2.X
OpenCL C++
GLSL
OpenCL IngestionOpenCL 1.2 ExtensionOpenCL 2.0 ExtensionOpenCL 2.1/2.2 Core
Graphics API IngestionN/aN/a
Vulkan 1.X
OpenGL 4.6 Core

LLVM-based versions

[edit]

SPIR prior to the 2015 SPIR-V release was based on theLLVM Intermediate Representation. A provisional specification for SPIR 1.0 was announced in 2012.[7] On July 22, 2013, a provisional specification SPIR 1.2 was announced atSIGGRAPH 2013.[8] The final SPIR 1.2 specification was released at HiPEAC 2014 on January 21, 2014.[9] On August 11, 2014, a provisional specification for SPIR 2.0 was released atSIGGRAPH 2014.[10] SPIR-V does not use LLVM.[2]

SPIR-V

[edit]

SPIR-V 1.0 is a new version of SPIR announced in March 2015,[11] and released on November 16, 2015.[12] The SPIR family now includes a true cross-API standard that is fully defined by Khronos with native support for shader and kernel features.

A separate program by the Khronos Group allows for interconversion with LLVM IR.[13]

Support for ingestion of SPIR-V is incorporated in the core specification of OpenCL 2.1, theVulkan API, andOpenGL version 4.6.

SPIR-V Releases
DateVersionNotes
April 18, 20161.1Released atIWOCL 2016 along with Provisional OpenCL 2.2. SPIR-V 1.1 added support for OpenCL C++, initializer/finalizer function execution modes, named barriers, subgroup execution, program scope pipes and pipe storage.[14]
May 16, 20171.2Released atIWOCL 2017 along with OpenCL 2.2. SPIR-V 1.2 added support for runtime specialization of key tuning parameters in OpenCL 2.2.[15]
March 7, 20181.3Released along withVulkan 1.1. SPIR-V 1.3 Added support for subgroup operations and enables enhanced compiler optimizations.[16]
May 7, 20191.4[1]
September 13, 20201.5[1]
December 16, 20211.6[1]

Features

[edit]

SPIR-V is a high-level intermediate language, exchanged in binary form. Functions are represented by acontrol-flow graph of basic blocks, usingstatic single assignment (SSA) form. Data structures retain high-level hierarchical representation. It is not lossy like previous byte-code or virtual machine-like intermediate representations used for graphical shaders. This allows closer to optimum performance on the target devices.[17]

Extensibility

[edit]

SPIR-V can be extended by writing extensions to add semantics, or reserving ranges of the token values for the party's use. Vendors can independently add desired semantics to SPIR-V.[18] Additional sets of extended instruction sets can be provided in separate specifications. Multiple sets can be imported without issue, as extended instructions are used by specifying the ID of the set and of the instruction within the set.[18]

Shaders

[edit]

Debuggers includeRenderDoc, SwiftShader, and Amber.[19]

Graphical shaders use structured control flow in SPIR-V to state how control flow nests. This helps in defining divergence and reconvergence of control flow on parallel execution environments.[20] Specialization reduces the number of variants of a shader that need to be distributed.[21]

Validation

[edit]

The SPIR-V specification states the rules that must be followed to have a valid SPIR-V module. This allows for offline validation. Drivers are not obligated to handle invalid SPIR-V modules. In testing, conformance testing verifies that drivers behave correctly when consuming valid SPIR-V, while validators verify that front-ends properly generate SPIR-V.[22]

Linking

[edit]

SPIR-V can express calls to functions in a different compilation unit. The standard version of SPIR-V uses this feature for OpenCL compute kernels, but not for shader stages, which the graphical APIs want fully linked into a single SPIR-V module.[23] There are extensions available to allow tools to temporarily use partially linked shaders and also kernels.[24]

Capabilities

[edit]

A SPIR-V module is used by a client API to support that module's features, which are classified through capabilities, and declared early in the module. A validator can confirm that the module uses only its declared capabilities, and a client API can reject modules that declare unsupported capabilities.[25]

SPIR-V for GLSL cross-compilation

[edit]

SPIR-V has been used to help deal with multiple versions of source-level languages. For example, the multiple versions of OpenGL Shading Language (GLSL) require distribution of multiple versions of shaders, due to implementations that are pegged to a specific older version of GLSL, such as forWebGL 1.0 and Apple's OpenGL implementation. One of the notable use cases of SPIR-V is its ability to be used as an interchange format between GLSL versions, using tools maintained by theKhronos Group for compiling GLSL to SPIR-VglslangValidator,[26] optimizing SPIR-Vspirv-opt,[22] and cross-compiling to SPIR-V to different GLSL targetsspirv-cross.[27]

As a format, however, SPIR-V has some limitations for cross-compilation, including the requirement that every SPIR-V module have at least one entry-point symbol. This prevents the format from being easily used for separate compilation, where complex shaders could be assembled by a series of partial compile steps followed by a linking step. This runs counter to the stated goals of some SPIR-V tools such asspirv-link,[22] which aims to provide full linking functionality for SPIR-V binary code.

See also

[edit]

References

[edit]
  1. ^abcd"Khronos SPIR-V Registry - The Khronos Group Inc".www.khronos.org. Retrieved2024-01-16.
  2. ^abcTerzo, Olivier; Djemame, Karim; Scionti, Alberto; Pezuela, Clara (10 September 2019).Heterogeneous Computing Architectures: Challenges and Vision. CRC Press.ISBN 9780429680038. Retrieved24 June 2022.
  3. ^Bieneman, Chris (19 September 2024)."DirectX Adopting SPIR-V as the Interchange Format of the Future".DirectX Developer Blog. Retrieved19 September 2024.
  4. ^"Shader modules".Vulkan Tutorial.
  5. ^"HLSL as a First Class Vulkan Shading Language".The Khronos Group. 15 January 2020.
  6. ^KhronosGroup/SPIRV-Cross, The Khronos Group, 2019-09-06, retrieved2019-09-08
  7. ^Larabel, Michael (12 September 2012)."Khronos SPIR For OpenCL Brings Binary Compatibility".Phoronix. Retrieved25 July 2015.
  8. ^Smith, Ryan (22 July 2013)."Khronos @ SIGGRAPH 2013: OpenGL 4.4, OpenCL 2.0, & OpenCL 1.2 SPIR Announced".Anandtech. Archived fromthe original on July 25, 2013. Retrieved5 April 2015.
  9. ^"Khronos Releases SPIR 1.2 Specification for Portable Encoding of OpenCL Device Programs".The Khronos Group. 2014-01-20. Retrieved2019-08-05.
  10. ^Smith, Ryan (11 August 2014)."Khronos Announces OpenCL SPIR 2.0".Anandtech. Archived fromthe original on August 11, 2014. Retrieved5 April 2015.
  11. ^Parkerson, Stuart (4 March 2015)."Khronos Group Introduces New Vulkan Hardware Driver API and SPIR-V Intermediate Language Shared by Vulkan and OpenCL 2.1".App Developer Magazine. Retrieved5 April 2015.
  12. ^"Khronos Releases OpenCL 2.1 and SPIR-V 1.0 Specifications for Heterogeneous Parallel Programming".www.Khronos.org. 16 November 2015. Retrieved16 November 2015.
  13. ^"SPIRV-LLVM-Translator: A tool and a library for bi-directional translation between SPIR-V and LLVM IR".GitHub. The Khronos Group.
  14. ^Trevett, Neil (18 April 2016)."OpenCL A State of the Union (IWOCL 2016)"(PDF).Khronos Group.
  15. ^Trevett, Neil (16 May 2017)."OpenCL State of the Nation (IWOCL 2017)"(PDF).IWOCL.
  16. ^"SPIR - The Industry Open Standard Intermediate Language for Parallel Compute and Graphics".The Khronos Group. 2014-01-20. Retrieved2019-08-05.
  17. ^Kessenich, John."An Introduction to SPIR-V"(PDF). Khronos. Retrieved25 July 2015.
  18. ^ab"SPIRV-Guide".github.com. Retrieved24 June 2022.
  19. ^"Google Open-Sources 'Amber' Multi-API Shader Test Framework".phoronix.com. Retrieved24 June 2022.
  20. ^"SPIR-V Specification: Structured Control Flow".khronos.org. Retrieved24 June 2022.
  21. ^"Specialization Constants".veldrid.dev. Retrieved24 June 2022.
  22. ^abc"SPIR-V Tools".www.github.com. Retrieved2020-10-01.
  23. ^"Shader Fundamentals".informit.com. Retrieved24 June 2022.
  24. ^"SPIR-V Extension for Visual Studio".saschawillems.de. Retrieved24 June 2022.
  25. ^"SPIR-V Specification: Language Capabilities".khronos.org. Retrieved24 June 2022.
  26. ^"OpenGL / OpenGL ES Reference Compiler".www.khronos.org. Retrieved2020-10-01.
  27. ^"SPIR-V Cross".www.github.com. Retrieved2020-10-01.

External links

[edit]
Khronos Group Standards
Active
Inactive
Retrieved from "https://en.wikipedia.org/w/index.php?title=Standard_Portable_Intermediate_Representation&oldid=1304464686"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2026 Movatter.jp