Skip to main content
torch.js has not been released yet.
torch.js logotorch.js logotorch.js
PlaygroundContact
Login
Documentation
IntroductionType SafetyTensor ExpressionsTensor IndexingEinsumEinopsAutogradTraining a ModelProfiling & MemoryPyTorch MigrationBest PracticesRuntimesPerformancePyTorch CompatibilityBenchmarksDType Coverage
Introduction
createBufferUsageMapModeWGPUBufferWGPUShaderModuleWGPUBindGroupLayoutWGPUBindGroupWGPUComputePipelineWGPUQuerySetWGPUComputePassEncoderWGPUCommandBufferWGPUCommandEncoderWGPUQueueWGPULimitsBufferDescriptorShaderModuleDescriptorComputePipelineDescriptorBufferBindingBindGroupEntryBindGroupDescriptorQuerySetDescriptorWGPUDeviceWGPUSupportedFeaturesWGPUAdapterWGPU
torch.js· 2026
LegalTerms of UsePrivacy Policy
/
/
  1. docs
  2. wgpu-native
  3. wgpu-native
  4. WGPUBindGroup

wgpu-native.WGPUBindGroup

export interface WGPUBindGroup {
  /**
   * Opaque native handle to this bind group.
   */
  readonly handle: BindGroupHandle;
}
readonlyhandle(BindGroupHandle)
– Opaque native handle to this bind group.

Bind group resource binding.

Groups together GPU resources (buffers, samplers, etc.) for binding to a pipeline. Bind groups are created from a bind group layout and a list of resource entries.

Previous
WGPUAdapter
Next
WGPUBindGroupLayout