JuliaGPU / JuliaGPU/AMDGPU.jl

AMDGPU Stable Website on Gitlab and JuliaHub Not Updated

Open
#396 2 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Dominant language
Julia
Stars
344
Forks
79
Avg merge
2d 23h
Merged PRs (30d)
27

Description

A minor omission but critical for new users of AMDGPU.jl get_global_pointer:

The github source contains the fix: AMDGPU.Device.get_global_pointer on the page for global variables and pointers. Neither of JuliaHub or GitLab stable documentation have this fix; they still present the outdated code:

function my_kernel(A) idx = workitemIdx().x ptr = AMDGPU.get_global_pointer(Val(:myglobal), Float32) A[idx] += Base.unsafe_load(ptr) nothing end

which should be:

function my_kernel(A) idx = workitemIdx().x ptr = AMDGPU.Device.get_global_pointer(Val(:myglobal), Float32) A[idx] += Base.unsafe_load(ptr) nothing end

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Compare the GitHub source with the stable documentation page for global variables and pointers on JuliaHub and GitLab. Locate the example containing AMDGPU.get_global_pointer, update the documentation so it matches the source's AMDGPU.Device.get_global_pointer call, and verify both stable sites no longer show the outdated example.

Written by the indexing model from the issue text.

Assessment

Tech stack
julia
Domain
documentation
Issue type
Documentation
Difficulty
2/5
Estimated time
1-3 hours
Activity status
Stale
Clarity
Clearly specified
Newbie friendliness
48/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.