All Projects → gfx-rs → Wgpu

gfx-rs / Wgpu

Licence: mpl-2.0
Safe and portable GPU abstraction in Rust, implementing WebGPU API.

Programming Languages

rust
11053 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Wgpu

Shadergum
Unity3D GPU Sculpt & Morph
Stars: ✭ 125 (-96.22%)
Mutual labels:  gpu
Sigpy
Python package for signal processing, with emphasis on iterative methods
Stars: ✭ 132 (-96.01%)
Mutual labels:  gpu
Vlr
GPU Monte Carlo Ray Tracing Renderer using NVIDIA OptiX
Stars: ✭ 137 (-95.85%)
Mutual labels:  gpu
Cuxfilter
GPU accelerated cross filtering with cuDF.
Stars: ✭ 128 (-96.13%)
Mutual labels:  gpu
Automatic Image Colorization
🎨 Automatic Image Colorization using TensorFlow based on Residual Encoder Network
Stars: ✭ 130 (-96.07%)
Mutual labels:  gpu
Gpu monitor
Monitor your GPUs whether they are on a single computer or in a cluster
Stars: ✭ 133 (-95.98%)
Mutual labels:  gpu
Finitediff.jl
Fast non-allocating calculations of gradients, Jacobians, and Hessians with sparsity support
Stars: ✭ 123 (-96.28%)
Mutual labels:  gpu
Toma
Helps you write algorithms in PyTorch that adapt to the available (CUDA) memory
Stars: ✭ 139 (-95.79%)
Mutual labels:  gpu
Mixbench
A GPU benchmark tool for evaluating GPUs on mixed operational intensity kernels (CUDA, OpenCL, HIP, SYCL)
Stars: ✭ 130 (-96.07%)
Mutual labels:  gpu
Galacritty
WIP GTK terminal emulator based on Alacritty
Stars: ✭ 136 (-95.89%)
Mutual labels:  gpu
Ipyexperiments
jupyter/ipython experiment containers for GPU and general RAM re-use
Stars: ✭ 128 (-96.13%)
Mutual labels:  gpu
Ergo Pe Av
🧠 🦠 An artificial neural network and API to detect Windows malware, based on Ergo and LIEF.
Stars: ✭ 130 (-96.07%)
Mutual labels:  gpu
Webgl Fluid Simulation
Play with fluids in your browser (works even on mobile)
Stars: ✭ 11,621 (+251.62%)
Mutual labels:  gpu
Libtorch Yolov5
A LibTorch inference implementation of the yolov5
Stars: ✭ 127 (-96.16%)
Mutual labels:  gpu
Kelpnet
Pure C# machine learning framework
Stars: ✭ 136 (-95.89%)
Mutual labels:  gpu
Deeprecommender
Deep learning for recommender systems
Stars: ✭ 1,593 (-51.8%)
Mutual labels:  gpu
Libcudacxx
The C++ Standard Library for your entire system.
Stars: ✭ 1,861 (-43.69%)
Mutual labels:  gpu
Benchmarks
Comparison tools
Stars: ✭ 139 (-95.79%)
Mutual labels:  gpu
Nvidia gpu prometheus exporter
NVIDIA GPU Prometheus Exporter
Stars: ✭ 138 (-95.82%)
Mutual labels:  gpu
Tensorrt Utils
⚡ Useful scripts when using TensorRT
Stars: ✭ 136 (-95.89%)
Mutual labels:  gpu

wgpu

Matrix Space Dev Matrix  User Matrix Build Status codecov.io

wgpu is a cross-platform, safe, pure-rust graphics api. It runs natively on Vulkan, Metal, D3D12, D3D11, and OpenGLES; and on top of WebGPU on wasm.

The api is based on the WebGPU standard. It serves as the core of the WebGPU integration in Firefox, Servo, and Deno.

Repo Overview

The repository hosts the following libraries:

  • Crates.io docs.rs - User facing Rust API.
  • Crates.io docs.rs - Internal WebGPU implementation.
  • Crates.io docs.rs - Internal unsafe GPU API abstraction layer.
  • Crates.io docs.rs - Rust types shared between all crates.
  • Crates.io - WebGPU implementation for the Deno JavaScript/TypeScript runtime

The following binaries:

  • cts_runner - WebGPU Conformance Test Suite runner using deno_webgpu.
  • player - standalone application for replaying the API traces.
  • wgpu-info - program that prints out information about all the adapters on the system or invokes a command for every adapter.

For an overview of all the components in the gfx-rs ecosystem, see the big picture.

MSRV policy

Minimum Supported Rust Version is 1.53. It is enforced on CI (in "/.github/workflows/ci.txt") with RUST_VERSION variable. This version can only be upgraded in breaking releases.

Getting Started

Rust

Rust examples can be found at wgpu/examples. You can run the examples with cargo run --example name. See the list of examples. For detailed instructions, look at our Get Started wiki.

If you are looking for a wgpu tutorial, look at the following:

C/C++

To use wgpu in C/C++, you need wgpu-native.

Others

If you want to use wgpu in other languages, there are many bindings to wgpu-native from languages such as Python, D, Julia, Kotlin, and more. See the list.

Community

We have the Matrix space Matrix Space with a few different rooms that form the wgpu community:

  • Dev Matrix - discussion of the library's development.
  • User Matrix - discussion of using the library and the surrounding ecosystem.
  • Random Matrix - discussion of everything else.

Wiki

We have a wiki that serves as a knowledge base.

Supported Platforms

API Windows Linux & Android macOS & iOS
Vulkan
Metal
DX12 (W10 only)
DX11 🛠️
GLES3 🆗
Angle 🆗 🆗 🛠️

= First Class Support — 🆗 = Best Effort Support — 🛠️ = Unsupported, but support in progress

Angle

Angle is a translation layer from GLES to other backends, developed by Google. We support running our GLES3 backend over it in order to reach platforms with GLES2 or DX11 support, which aren't accessible otherwise. In order to run with Angle, "angle" feature has to be enabled, and Angle libraries placed in a location visible to the application. These binaries can be downloaded from gfbuild-angle artifacts.

On Windows, you generally need to copy them into the working directory, or in the same directory as the executable. On Linux, you can point to them using LD_LIBRARY_PATH environment.

Environment Variables

All testing and example infrastructure shares the same set of environment variables that determine which Backend/GPU it will run on.

  • WGPU_ADAPTER_NAME with a substring of the name of the adapter you want to use (ex. 1080 will match NVIDIA GeForce 1080ti).
  • WGPU_BACKEND with a comma separated list of the backends you want to use (vulkan, metal, dx12, dx11, or gl).
  • WGPU_POWER_PREFERENCE with the power preference to choose when a specific adapter name isn't specified (high or low)

When running the CTS, use the variables DENO_WEBGPU_ADAPTER_NAME, DENO_WEBGPU_BACKEND, DENO_WEBGPU_POWER_PREFERENCE.

Testing

We have multiple methods of testing, each of which tests different qualities about wgpu. We automatically run our tests on CI if possible. The current state of CI testing:

Backend/Platform Status
DX12/Windows 10 ✔️ (over WARP)
DX11/Windows 10 🚧 (over WARP)
Metal/MacOS (no CPU runner)
Vulkan/Linux 🆗 (cts hangs)
GLES/Linux (egl fails init)

Core Test Infrastructure

All framework based examples have image comparison tested against their screenshot.

To run the test suite on the default device:

cargo test --no-fail-fast

There's logic which can automatically run the tests once for each adapter on your system.

cargo run --bin wgpu-info -- cargo test --no-fail-fast

Then to run an example's image comparison tests, run:

cargo test --example <example-name> --no-fail-fast

Or run a part of the integration test suite:

cargo test -p wgpu -- <name-of-test>

If you are a user and want a way to help contribute to wgpu, we always need more help writing test cases.

WebGPU Conformance Test Suite

WebGPU includes a Conformance Test Suite to validate that implementations are working correctly. We can run this CTS against wgpu.

To run the CTS, first you need to check it out:

git clone https://github.com/gpuweb/cts.git
cd cts
# works in bash and powershell
git checkout $(cat ../cts_runner/revision.txt)

To run a given set of tests:

# Must be inside the cts folder we just checked out, else this will fail
cargo run --manifest-path ../cts_runner/Cargo.toml -- ./tools/run_deno --verbose "<test string>"

To find the full list of tests, go to the online cts viewer.

The list of currently enabled CTS tests can be found here.

Coordinate Systems

wgpu uses the coordinate systems of D3D and Metal:

Render Depth Texture
render_coordinates depth_coordinates texture_coordinates
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].