An open API service indexing awesome lists of open source software.

https://github.com/metashade/metashade

An experimental GPU shading DSL embedded in Python.
https://github.com/metashade/metashade

computer-graphics dsl edsl metaprogramming metashade python shaders shading-language

Last synced: 3 months ago
JSON representation

An experimental GPU shading DSL embedded in Python.

Awesome Lists containing this project

README

          

# Metashade
## What is Metashade?
Metashade is an experimental Python-based GPU shading embedded domain-specific language (EDSL).
When a Metashade script executes, it generates code in a target shading language.
Currently, limited but useful subsets of HLSL and GLSL are supported, and more targets are possible in the future.

To see Metashade in action, check out the glTF demo at https://github.com/metashade/metashade-glTFSample or the [tests](tests) which are run by CI:
[![GitHub Actions CI](https://github.com/metashade/metashade/actions/workflows/python-package.yml/badge.svg)](https://github.com/metashade/metashade/actions/workflows/python-package.yml)

There's also a prototype [MaterialX](https://materialx.org/) integration that allows Metashade to generate MaterialX node implementations. See the [`metashade.mtlx` package](metashade/mtlx) and the [mtlx tests](tests/mtlx) for examples.

For a detailed discussion of the motivation for Metashade and its design, please see the [presentation on Google Slides](https://docs.google.com/presentation/d/e/2PACX-1vQtYIwXIkMnVC6TzWTKPAtZIA6_xeUCQc8Mvyziu0qy7HDUduz_onsJ5TabxTuuVQ/pub?start=false&loop=false&delayms=3000) or [watch this presentation](https://youtu.be/yC8VMLXYs5U?si=d_n3ngHr1IZIQ8ZH) from Academy Software Foundation Open Source Days 2024.

## Rationale

* Programming at a more abstract level than the target language:
* Metaprogramming - think C++ templates but with greater flexibility.
Like any other Python code, Metashade code is polymorphic at generation time.
This approach can replace the traditional ubershader practice, effectively replacing the C preprocessor with Python.
* Stricter typing - e.g. a 3D point and an RGB color can be represented with different Metashade types, backed by the same data type in HLSL.
* Multi-language/cross-platform support.
Cross-compilation (e.g. with SPIRV-Cross) is definitely an alternative but the code generation approach should offer higher flexibility around:
* more divergent languages, e.g. HLSL vs OSL;
* language dialects;
* integration required by the specific host application (a shader fragment with an interface defined in metadata, an effect file etc.),
which is hard to accomplish with cross-compilation because it typically operates on final,
full shaders with a defined entry point.
* Easy integration with content pipeline and build system scripts written in Python, and the vast Python ecosystem in general.

## What does it look like?

The following Metashade Python code

```Python
@export
def D_Ggx(sh, NdotH: 'Float', fAlphaRoughness: 'Float') -> 'Float':
"""
GGX/Trowbridge-Reitz Normal Distribution Function.

Args:
NdotH: Dot product of surface normal and half-vector
fAlphaRoughness: Roughness parameter (perceptualRoughness^2)

Returns:
NDF value
"""
sh.fASqr = fAlphaRoughness * fAlphaRoughness
sh.fF = (NdotH * sh.fASqr - NdotH) * NdotH + sh.Float(1.0)
sh.return_(
(sh.fASqr / (sh.Float(math.pi) * sh.fF * sh.fF)).saturate()
)
```

generates the following HLSL output:

```C
// GGX/Trowbridge-Reitz Normal Distribution Function.
//
// Args:
// NdotH: Dot product of surface normal and half-vector
// fAlphaRoughness: Roughness parameter (perceptualRoughness^2)
//
// Returns:
// NDF value
//
float D_Ggx(float NdotH, float fAlphaRoughness)
{
float fASqr = fAlphaRoughness * fAlphaRoughness;
float fF = (((NdotH * fASqr) - NdotH) * NdotH) + 1.0;
return saturate(fASqr / ((3.141592653589793 * fF) * fF));
}
```

## How does it work?

Popular Pythonic GPU EDSLs like [Nvidia Warp](https://github.com/NVIDIA/warp),
[Taichi](https://github.com/taichi-dev/taichi),
[Numba](https://github.com/numba/numba)
and [OpenAI’s Triton](https://github.com/openai/triton)
rely on Python's introspection to capture the Python AST and transpile it to the target language.
This approach can only support a subset of Python syntax that maps onto the target language.

In contrast, Metashade generates target code dynamically, during the execution of Python code,
modeling the state of the shader being generated in objects called generators.
This requires some idiosyncratic Python syntax but in return we get the full power of Python at generation time.
Python's run time becomes the shader's design time, and it becomes a metaprogramming language, independent of the target language and replacing mechanisms like the C Preprocessor, generics and templates.

This offers the following benefits:
* Easy-to-use metaprogramming. Imperative metaprogramming is possible (by comparison, C++ templates are a pure-functional language).
* The whole stack is debuggable by the application programmer.
* Codegen can interact with the outside world (file system or user input). E.g. the [glTF demo](https://github.com/metashade/metashade-glTFSample) loads glTF assets and generates shaders based on their contents.
* Codegen can integrate with arbitrary Python code. E.g. the [glTF demo](https://github.com/metashade/metashade-glTFSample) uses the third-party [pygltflib](https://pypi.org/project/pygltflib/) to parse glTF assets.
* It's easy to build abstractions on top of basic codegen.

### Creating a generator

Before Metashade can generate anything, a generator object has to be created for a specific target shading
language profile, with an output file (or a file-like stream object) passed as a constructor argument, e.g.

```Python
from metashade.hlsl.sm6 import ps_6_0
from metashade.glsl import frag

def generate(sh):
# Polymorphic shader code for multiple targets
pass

with open('ps.hlsl', 'w') as ps_file:
sh = ps_6_0.Generator(ps_file)
generate(sh)

with open('fs.glsl', 'w') as frag_file:
sh = frag.Generator(frag_file)
generate(sh)
```

Note that, by convention, the generator object is always named `sh` (for "shader").
This helps Metashade code be polymorphic with regard to different target profiles.
E.g. code with the same logic can be generated for an HLSL pixel shader and a GLSL compute shader.

### Generating C-like scopes and local variables

Metashade uses Python variables to represent variables in target C-like shading languages,
but there are obviously major differences in their behavior, namely:
* C-like languages have different scoping rules than Python.
* In Python, variables are always assigned by reference and the same variable can point to different objects, possibly of different types in its lifetime.
Variables in C-like shading languages, in contrast, are typed statically and are assigned by value.

The following Python mechanisms are used in Metashade to emulate the C-like semantics at Python code's run time.

#### `with` statements

Metashade uses Python's `with` statements to emulate C-like scopes.
For example, in a [function definition](#what-does-it-look-like), the `sh.function` object starts a new scope by modifying the internal state of generator `sh` when its special `__enter__` and `__exit__` methods are called.

#### `__getattr__` and `__setattr__`

To model the semantics of target variables, Metashade exposes them syntactically as member variables on the generator object (hence the idiosyncratic `sh.x` syntax).
This is implemented with the special `__getattr__` and `__setattr__` functions, which overload member accesses.
With these, we have complete control over the variable's lifetimes and typing.
For example, we can capture the variable's name with `__setattr__()` without the need for Python introspection.
We can also easily check in `__setattr__()` if the user is trying to reinitialize the variable with a different type, and we can raise an exception in `__getattr__()` if the user tries to access a variable that's gone out of scope.

The `__getattr__()`/`__setattr__()` mechanism is also used for other features, such as accessing struct members and vector elements.

#### Operator overloading

Just like in C++, Python's operators can be overloaded with arbitrary logic.
Metashade uses this feature to model expressions in the target language - something along the lines of

```Python
def __add__(self, other):
return Expression(f"{self} + {other}")
```

This also opens up possibilities for injecting custom logic, such as stronger type checks, independent from the target language.
E.g. `sh.RgbF` can’t be added to `sh.Point3f` even though they're both backed by the `float3` built-in type in HLSL.

For added syntactic sugar, the `__floordiv__` operator is overloaded to generate comments in the target language (see below).

## Some examples

The following Python code

```Python
sh.rgba = sh.RgbaF(rgb = (0, 1, 0), a = 0)

sh // 'Swizzling - the destination type is deduced'
sh // "a-la `auto` in C++"
sh.color = sh.rgba.rgb

sh // 'Write masking'
sh.color.r = 1

sh // 'Intrinsics example'
sh.N = sh.N.normalize()

sh // 'Dot product == Python 3 matmul'
sh // '(a.k.a. "walrus") operator'
sh.NdotL = sh.N @ sh.L

# The walrus operator is also used to
# combine textures and samplers
combined_sampler = sh.g_tColor @ sh.g_sColor

sh // 'Sample the texture'
sh.rgbaSample = combined_sampler(sh.uv)
```

generates the following HLSL:

```HLSL
float4 rgba = float4(float3(0, 1, 0), 0);

// Swizzling - the destination type is deduced
// a-la `auto` in C++
float3 color = rgba.rgb;

// Write masking
color.r = 1;

// Intrinsics example
N = normalize(N);

// Dot product == Python 3 matmul
// (a.k.a. "walrus") operator
float NdotL = dot(N, L);

// Sample the texture
float4 rgbaSample = g_tColor.Sample(g_sColor, uv);
```

### Conditional statements

Metashade models `if` and `else` statements of the target C-like languages with Python's `with` statements, for example:

```Python
with sh.if_(sh.g_f4A.x):
sh.result.color = sh.g_f4B
with sh.else_():
sh.result.color = sh.g_f4D
sh.return_(sh.result)
```

generates the following HLSL:

```HLSL
if (g_f4A.x)
{
result.color = g_f4B;
}
else
{
result.color = g_f4D;
}
return result;
```

Please note that the native Python `if` and `else` can be used in Metashade to implement design-time logic, similar to `#ifdef` or `if constexpr()` in C++.
This is another example of how Metashade explicitly separates design-time and run-time code.

For example, the following code is generated conditionally if the input geometry has vertex tangents:

```Python
if hasattr(sh.vsIn, 'Tobj'):
sh.vsOut.Tw = sh.g_WorldXf.xform(sh.vsIn.Tobj.xyz).xyz.normalize()
sh.vsOut.Bw = sh.vsOut.Nw.cross(sh.vsOut.Tw) * sh.vsIn.Tobj.w
```