Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Commit

Permalink
Merge pull request #6 from LuxDL/ap/miopen0.5
Browse files Browse the repository at this point in the history
Support only AMDGPU 0.5 and beyond
  • Loading branch information
avik-pal authored Jul 8, 2023
2 parents d5ad86b + 0fdae3a commit 1c78179
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: false
matrix:
version:
- "~1.9.0-0"
- "1"
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
Expand All @@ -42,4 +42,3 @@ jobs:
- uses: codecov/codecov-action@v3
with:
files: lcov.info
flags: ${{ matrix.group }}
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name = "LuxAMDGPU"
uuid = "83120cb1-ca15-4f04-bf3b-6967d2e6b60b"
authors = ["Avik Pal <[email protected]> and contributors"]
version = "0.1.1"
version = "0.1.2"

[deps]
AMDGPU = "21141c5a-9bdb-4563-92ae-f87d6854732e"
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"

[compat]
AMDGPU = "0.4.8"
AMDGPU = "0.5"
Reexport = "1"
julia = "1.9"
2 changes: 1 addition & 1 deletion src/LuxAMDGPU.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module LuxAMDGPU

using Reexport

@reexport using AMDGPU
@reexport using AMDGPU, AMDGPU.ROCKernels

const USE_AMD_GPU = Ref{Union{Nothing, Bool}}(nothing)

Expand Down
2 changes: 1 addition & 1 deletion test/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[compat]
julia = "1.6"
julia = "1.9"

2 comments on commit 1c78179

@avik-pal
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/87101

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.2 -m "<description of version>" 1c78179ae7e430016ba1c1e66019b6fa1f88eb57
git push origin v0.1.2

Please sign in to comment.