global_load_dword GPU Native ISA AMD Vector

GLOBAL LOAD DWORD Vector/Global Memory

global_load_dword VDST, VADDR, SADDR, offset

Load one 32-bit dword per lane from the global address space using a 64-bit per-lane address.

Encoding

Verified bit-level encoding data is not yet available for this instruction. The instruction-format classification below (GLOBAL) is well-documented and stable; exact per-target opcode/field bit positions have not yet been imported from a verified source.
Format GLOBAL
Width 32 bits
Execution Unit Vector Memory Unit
Register Classes VGPR, SGPR
Memory Segment global

Operands

  • VDST
    Destination VGPR
  • VADDR
    Per-lane 64-bit address (VGPR pair)
  • SADDR
    Optional uniform base (SGPR pair)
  • offset
    Immediate offset

GFX Target Compatibility

TargetSupport
gfx942✅ Supported
gfx1100✅ Supported

Related PTX Concepts

Global-Memory Load ↗
equivalent with restrictions
ld (PTX)

Reference

AMDGPU / GFX ISA

Semantics

VDST[lane] = *(VADDR[lane] + SADDR + offset) for each active lane.

Sources