7 unstable releases (3 breaking)

0.3.0 Jul 25, 2023
0.2.0 Apr 21, 2023
0.1.0 Dec 16, 2022
0.0.0 Aug 19, 2021

#73 in Programming languages

Download history 221/week @ 2024-01-01 204/week @ 2024-01-08 132/week @ 2024-01-15 188/week @ 2024-01-22 258/week @ 2024-01-29 283/week @ 2024-02-05 113/week @ 2024-02-12 200/week @ 2024-02-19 201/week @ 2024-02-26 203/week @ 2024-03-04 284/week @ 2024-03-11 216/week @ 2024-03-18 291/week @ 2024-03-25 164/week @ 2024-04-01 106/week @ 2024-04-08 128/week @ 2024-04-15

728 downloads per month
Used in 3 crates (via rustc_codegen_spirv)

MIT/Apache

1.5MB
38K SLoC

Rust 16K SLoC // 0.1% comments C++ 6K SLoC // 0.1% comments C# 4.5K SLoC // 0.0% comments Python 4.5K SLoC // 0.0% comments Lua 4.5K SLoC // 0.0% comments D 2K SLoC // 0.0% comments Bazel 142 SLoC

SPIR-🇹

⋯🢒 🇹arget 🠆 🇹ransform 🠆 🇹ranslate ⋯🢒

Embark Crates.io Docs Git Docs dependency status Build status

SPIR-🇹 is a research project aimed at exploring shader-oriented IR designs derived from SPIR-V, and producing a framework around such an IR to facilitate advanced compilation pipelines, beyond what existing SPIR-V tooling allows for.

Such a need arose in the Rust-GPU project, which requires a variety of legalization passes to turn general-purpose (Rust1) code operating on untyped memory, into GPU-friendly direct data-flow.
Our goal is to replace the existing Rust-GPU SPIR-V legalizations passes with SPIR-🇹 equivalents - but even more imporantly, SPIR-🇹 should allow writing much more powerful legalization/optimization passes, that would've been unfathomable2 for direct SPIR-V manipulation.


1 Rust is not unique in its needs here, and more languages (or IRs) could eventually make use of such a framework, but the initial design and implementation work has focused on Rust-GPU

2 not outright impossible, but requiring excessive development/maintenance cost, having to constantly balance correctness and power (more conservative passes are easier to trust), etc.

Disclaimer

This project is not affiliated, associated, authorized, endorsed by, or in any way officially connected with Khronos Group Inc., or any of its subsidiaries or its affiliates. The official Khronos Group Inc. website can be found at https://www.khronos.org.
The names SPIR, SPIR-V, as well as related names, marks, emblems and images are trademarks of their respective owners.

Additional context: the name of this project is a pun on SPIR-V, and entirely unrelated to SPIR (the older IR standard).

Status

🚧 This project is in active design and development, many details can and will change 🚧

If you're interested in using SPIR-🇹 yourself, you may want to first take a look at the issue tracker for relevant issues, and even open new ones describing your usecase.
With the initial focus being on Rust-GPU's usecase, various (otherwise desirable) functionality/APIs/docs may be lacking, or rapidly changing - at the same time, discussions around widening the scope and usability of SPIR-🇹 in the long term are still welcome.

Non-goals (at least in the short term)

  • supporting the ("OpenCL") Kernel dialect of SPIR-V
    • Kernel SPIR-V is much closer to LLVM IR, than Shader SPIR-V, and as such tooling oriented around LLVM is more likely to be a better fit
  • textual syntax that can be parsed back
    • i.e. the pretty-printer output is purely a visualization

Designed and implemented so far

IR data types:

  • allowing near-arbitrary SPIR-V instructions for any unrecognized opcodes
    • IDs are replaced with interned/"entity" handles (see below)
  • interning for attributes (decorations & similar), types and constants
    • i.e. automatic deduplication, efficient indexing, and no concept of "definition" (only uses of interned handles can lead to a module being considered to contain a specific type/constant)
  • "entity" system for e.g. definitions in a module, instructions in a function, etc.
    • disallows iteration in favor of/forcing the use of efficient indexing
  • structured control-flow "regions" inspired by RVSDG, stricter than SPIR-V (see ControlRegionDef's docs for more details)

Framework utilities:

  • visit/transform: immutable/mutable IR traversal
  • print: pretty-printer with (styled and hyperlinked) HTML output

Passes (to/from/on SPIR-🇹):

  • spv::lower: "lowering" from SPIR-V, normalizing away many irrelevant details
    • lossy for some relevant details (these are bugs, though many are non-semantic so lower priority)
  • spv::lift: "lifting" back up to SPIR-V, making arbitrary choices where necessary
    • comparable to e.g. generating GLSL syntax from SPIR-V, just one level down
  • cfg::Structurizer: (re)structurization, from arbitrary control-flow to the stricter structured "regions"
  • passes::link: mapping (linkage) imports to relevant exports

Simple example (with non-trivial control-flow)

#version 450
out int output0;
void main() {
    int o = 1;
    for(int i = 1; i < 10; i++)
    	  o *= i;
    output0 = o;
}

@vertex
fn main() -> @location(0) i32 {
    var o: i32 = 1;
    for(var i: i32 = 1; i < 10; i++) {
    	o *= i;
    }
    return o;
}

SPIR-🇹

#[spv.Decoration.Flat]
#[spv.Decoration.Location(Location: 0)]
global_var GV0 in spv.StorageClass.Output: s32

func F0() -> spv.OpTypeVoid {
  loop(v0: s32 <- 1s32, v1: s32 <- 1s32) {
    v2 = spv.OpSLessThan(v1, 10s32): bool
    (v3: bool, v4: s32, v5: s32) = if v2 {
      v6 = spv.OpIMul(v0, v1): s32
      v7 = spv.OpIAdd(v1, 1s32): s32
      (true, v6, v7)
    } else {
      spv.OpStore(Pointer: &GV0, Object: v0)
      (false, spv.OpUndef: s32, spv.OpUndef: s32)
    }
    (v4, v5) -> (v0, v1)
  } while v3
}

%typeof_output0 = OpTypePointer Output %i32
%output0 = OpVariable %typeof_output0 Output

%typeof_main = OpTypeFunction %void
%main = OpFunction %void None %typeof_main
  %entry = OpLabel
    OpBranch %bb0
  %bb0 = OpLabel
    OpBranch %bb1
  %bb1 = OpLabel
    %o = OpPhi %i32 %1_i32 %bb0 %o_next %bb5
    %i = OpPhi %i32 %0_i32 %bb0 %i_next %bb5
    OpLoopMerge %bb6 %bb5 None
    OpBranch %bb2
  %bb2 = OpLabel
    %cond = OpSLessThan %bool %i %10_i32
    OpSelectionMerge %bb4 None
  OpBranchConditional %cond %bb4 %bb3
  %bb3 = OpLabel
    OpBranch %bb6
  %bb4 = OpLabel
    %o_next = OpIMul %i32 %o %i
    OpBranch %bb5
  %bb5 = OpLabel
    %i_next = OpIAdd %i32 %i %1_i32
    OpBranch %bb1
  %bb6 = OpLabel
    OpStore %output0 %o
    OpReturn
OpFunctionEnd

GPU (shader) IR landscape overview

(and the vision of how SPIR-🇹 fits into it)

The distinction being made here is between:

  • Interchange IRs (standards that many tools can use to interoperate)
    • SPIR-V was very much intended as such a standard (outside of the GPU space, wasm is also a great example)
    • they only need to encode the right concepts, not straying too far away from what tools understand, but the design effort is often oriented around being a "serialization" format
  • Compiler IRs (non-standard implementation details of compilers)
    • LLVM is quite well-known, but Mesa's NIR is even closer to SPIR-🇹 (both being shader-oriented, and having similar specialized choices of e.g. handling control-flow)
    • these have to handle legalization/optimization passes quite well, and in general a lot of on-the-fly transformations - as their main purpose is to expedite such operations
    • this is where SPIR-🇹 sits, as a kind of "relative"/dialect of SPIR-V, but making trade-offs in favor of the "intra-compiler" usage

Contribution

Contributor Covenant

We welcome community contributions to this project.

Please read our Contributor Guide for more information on how to get started. Please also read our Contributor Terms before you make any contributions.

Any contribution intentionally submitted for inclusion in an Embark Studios project, shall comply with the Rust standard licensing model (MIT OR Apache 2.0) and therefore be dual licensed as described below, without any additional terms or conditions:

License

This contribution is dual licensed under EITHER OF

at your option.

For clarity, "your" refers to Embark or any other licensee/user of the contribution.

Dependencies

~4MB
~81K SLoC