| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
Packaging sources for the ONNX Runtime WebGPU plugin Execution Provider (EP), distributed as a standalone artifact that plugs into an existing ONNX Runtime installation rather than being built into the main onnxruntime binary.
For more information about plugin EPs, see the plugin EP libraries documentation.
The plugin EP is built as a shared library (onnxruntime_providers_webgpu.{dll,so,dylib}) by the main ONNX Runtime build (--use_webgpu shared_lib). The resulting binaries are then packaged into:
On Windows, the packages also bundle the DirectX Shader Compiler runtime (dxil.dll, dxcompiler.dll) from the DXC GitHub releases; CI fetches these automatically.
Packaging is driven by the WebGPU Plugin EP Packaging Pipeline (plugin-webgpu-pipeline.yml), and post-build smoke tests run in the companion WebGPU Plugin EP Test Pipeline (plugin-webgpu-test-pipeline.yml).
The packaging pipeline only uploads its outputs as Azure DevOps pipeline artifacts — it does not push to PyPI, nuget.org, or the ORT-Nightly feed. Publishing to public feeds is handled by separate release pipelines.
Once installed, the plugin EP is registered at runtime. Example in Python:
import onnxruntime as ort
import onnxruntime_ep_webgpu as webgpu_ep
ort.register_execution_provider_library("webgpu", webgpu_ep.get_library_path())
# The WebGPU EP currently accepts one EP device and selects the physical GPU independently.
webgpu_ep_device = next((d for d in ort.get_ep_devices() if d.ep_name == webgpu_ep.get_ep_name()), None)
if webgpu_ep_device is None:
raise RuntimeError("No WebGPU EP device found.")
sess_options = ort.SessionOptions()
sess_options.add_provider_for_devices([webgpu_ep_device], {})
session = ort.InferenceSession("model.onnx", sess_options=sess_options)See the user-facing package READMEs (bundled into the published packages) for full per-language usage:
| Back | FazBrowse Home | New Git URL |