File size: 9,006 Bytes
6dac0b2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 | # Copyright 2023 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Author: spopov@google.com (Stefan Popov)
"""An OpenGL rasterizer for PyTorch."""
import dataclasses
import importlib
import logging
from typing import Iterable, Optional, Tuple, Union
import glcontext
import moderngl
import numpy as np
import OpenGL.GL
import OpenGL.GL.NV.conservative_raster
import torch as t
from gl import egl_context
importlib.reload(glcontext)
egl_context.monkey_patch_moderngl()
InputTensor = Union[t.Tensor, np.ndarray, int, float, bool, Iterable]
log = logging.getLogger(__name__)
@dataclasses.dataclass(frozen=True)
class Uniform:
name: str
value: InputTensor
@dataclasses.dataclass()
class Buffer:
binding: int
value: InputTensor
is_io: bool = False
@dataclasses.dataclass(frozen=True)
class Texture:
name: str
value: InputTensor
bind_as_array: bool = False
@dataclasses.dataclass(frozen=True)
class RenderInput:
# The number of points to render. The geometry shader can then convert these
# into other geometry.
num_points: int
# The parameters to pass to the shaders.
arguments: Iterable[Union[Uniform, Buffer, Texture]]
# The vertex shader
vertex_shader: str
# The geometry shader
geometry_shader: str
# The fragment shader
fragment_shader: str
# The output resolution, tuple (height, width)
output_resolution: Tuple[int, int] = (256, 256)
# The clear color, tuple (R, G, B) or (R, G, B, A).
clear_color: Iterable[float] = (0, 0, 0)
# The output type (either uint8 or float32).
output_type: t.dtype = t.uint8
# Whether depth testing is enabled.
depth_test_enabled: bool = True
# Whether to use conservative rasterization
conservative_rasterization: bool = False
class _EglRenderer:
_context_cache: dict[int, "_EglRenderer"] = {}
def __init__(self, gl_context: moderngl.Context, cuda_device: int):
self._program_cache: dict[str, moderngl.Program] = {}
self._gl_context = gl_context
self.cuda_device = cuda_device
@classmethod
def get_instance(cls, cuda_device: int):
if cuda_device not in cls._context_cache:
# Cuda has to be initialized for the cuda_egl backend to work
t.cuda.init()
ctx = moderngl.create_standalone_context(backend="cuda_egl",
cuda_device=cuda_device)
cls._context_cache[cuda_device] = _EglRenderer(ctx, cuda_device)
return cls._context_cache[cuda_device]
def _check_gl_error(self):
err = self._gl_context.error
if err != "GL_NO_ERROR":
raise ValueError(f"OpenGL error encountered: {err}")
def _upload_uniform(self, program: moderngl.Program, parameter: Uniform):
if parameter.name not in program:
log.info(f"Uniform {parameter.name} not found in program")
else:
value = t.as_tensor(parameter.value).cpu()
if len(value.shape) == 2:
value = tuple(value.transpose(0, 1).reshape([-1]))
elif len(value.shape) == 1:
value = tuple(value)
elif value.shape == ():
value = value.item()
else:
raise ValueError("Only supports 0, 1, and 2 dim tensors.")
program[parameter.name].value = value
def _upload_buffer(self, parameter: Buffer) -> moderngl.Buffer:
value = t.as_tensor(parameter.value)
value = value.reshape([-1]).cpu().numpy()
buffer = self._gl_context.buffer(value)
buffer.bind_to_storage_buffer(parameter.binding)
return buffer
def _download_buffer(self, parameter: Buffer, buffer: moderngl.Buffer):
value = parameter.value
np_dtype = {t.float32: np.float32, t.int32: np.int32}[value.dtype]
temp_buffer = np.zeros(value.shape, np_dtype)
assert isinstance(buffer, moderngl.Buffer)
buffer.read_into(temp_buffer)
parameter.value = t.as_tensor(temp_buffer)
def render(self, render_input: RenderInput):
inp = render_input
with self._gl_context:
program_key = (
f"{inp.vertex_shader}|{inp.geometry_shader}|{inp.fragment_shader}")
if program_key not in self._program_cache:
self._program_cache[program_key] = self._gl_context.program(
vertex_shader=inp.vertex_shader,
fragment_shader=inp.fragment_shader,
geometry_shader=inp.geometry_shader)
program = self._program_cache[program_key]
objects_to_delete = []
buffer_bindings: dict[int, moderngl.Buffer] = {}
texture_location = 0
try:
for parameter in inp.arguments:
if isinstance(parameter, Uniform):
self._upload_uniform(program, parameter)
elif isinstance(parameter, Buffer):
buffer = self._upload_buffer(parameter)
buffer_bindings[parameter.binding] = buffer
objects_to_delete.append(buffer)
elif isinstance(parameter, Texture):
if not parameter.bind_as_array:
raise NotImplementedError()
if parameter.name not in program:
log.info(f"Uniform {parameter.name} not found in program")
else:
val = parameter.value.cpu().numpy()
texture = self._gl_context.texture_array(
val.shape[1:3] + val.shape[0:1], val.shape[3], val)
texture.repeat_x = True
texture.repeat_y = True
texture.use(location=texture_location)
program.get(parameter.name, None).value = texture_location
texture_location += 1
objects_to_delete.append(texture)
else:
raise ValueError("Unknown parameter type")
self._check_gl_error()
h, w = inp.output_resolution
gl_dtype, np_dtype = {
t.uint8: ("f1", np.uint8),
t.float32: ("f4", np.float32)
}[inp.output_type]
render_buffer = self._gl_context.renderbuffer((w, h), components=4,
samples=0, dtype=gl_dtype)
objects_to_delete.append(render_buffer)
depth_buffer = self._gl_context.depth_renderbuffer((w, h), samples=0)
objects_to_delete.append(depth_buffer)
framebuffer = self._gl_context.framebuffer(render_buffer, depth_buffer)
objects_to_delete.append(framebuffer)
framebuffer.use()
vertex_array = self._gl_context.vertex_array(program, ())
objects_to_delete.append(vertex_array)
self._gl_context.clear(*inp.clear_color)
self._gl_context.disable(moderngl.CULL_FACE)
if inp.depth_test_enabled:
self._gl_context.enable(moderngl.DEPTH_TEST)
self._gl_context.depth_func = "<="
else:
self._gl_context.disable(moderngl.DEPTH_TEST)
if render_input.conservative_rasterization:
OpenGL.GL.glEnable(
OpenGL.GL.NV.conservative_raster.GL_CONSERVATIVE_RASTERIZATION_NV)
else:
OpenGL.GL.glDisable(
OpenGL.GL.NV.conservative_raster.GL_CONSERVATIVE_RASTERIZATION_NV)
vertex_array.render(mode=moderngl.POINTS, vertices=inp.num_points)
self._check_gl_error()
result = np.zeros([h, w, 4], dtype=np_dtype)
framebuffer.read_into(result, components=4, dtype=gl_dtype)
self._check_gl_error()
for parameter in inp.arguments:
if isinstance(parameter, Buffer) and parameter.is_io:
self._download_buffer(parameter, buffer_bindings[parameter.binding])
return t.as_tensor(result)
finally:
for v in objects_to_delete:
v.release()
def get_egl_device(cuda_device: int) -> int:
"""Returns the EGL device corresponding to a CUDA device (-1 if none)."""
pass
def gl_simple_render(render_input: RenderInput,
cuda_device: Optional[int] = None):
"""Renders the supplied configuration with OpenGL.
Args:
render_input: The render input
cuda_device: The GPU to use, given as a CUDA device number
Returns:
The rendered image, output_type[height, width, 4]
Buffer parameters with is_io set to True will be read back. This can either
happen in the original buffer or in a new buffer. The implementation will
update the value field in the buffer parameter in the latter case.
There is no guarantee about the device of both the rendered image and the
buffers that are read back.
"""
if cuda_device is None:
cuda_device = t.cuda.current_device()
instance = _EglRenderer.get_instance(cuda_device)
return instance.render(render_input)
|