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

Commit

Permalink
Merge pull request #4 from LuxDL/ap/nnlibcuda
Browse files Browse the repository at this point in the history
Drop NNlibCUDA dependency
  • Loading branch information
avik-pal authored Jul 3, 2023
2 parents 95fcdd5 + f2855f2 commit ad30f8b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
4 changes: 3 additions & 1 deletion .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,11 @@ steps:
julia:
- "1"
- "1.6"
- "1.9-nightly"
- "nightly"
adjustments:
- with:
julia: "1.6"
soft_fail: true
- with:
julia: "nightly"
soft_fail: true
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ jobs:
version:
- "1"
- "1.6"
- "~1.9.0-0"
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
Expand All @@ -44,4 +43,3 @@ jobs:
- uses: codecov/codecov-action@v3
with:
files: lcov.info
flags: ${{ matrix.group }}
6 changes: 2 additions & 4 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
name = "LuxCUDA"
uuid = "d0bbae9a-e099-4d5b-a835-1c6931763bda"
authors = ["Avik Pal <[email protected]> and contributors"]
version = "0.1.2"
version = "0.2.0"

[deps]
CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba"
NNlibCUDA = "a00861dc-f156-4864-bf3c-e6376f28a68d"
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
cuDNN = "02a925ec-e4fe-4b08-9a7e-0d78e3d38ccd"

[compat]
CUDA = "4.1"
NNlibCUDA = "0.2"
CUDA = "4"
Reexport = "1"
cuDNN = "1"
julia = "1.6"
2 changes: 1 addition & 1 deletion src/LuxCUDA.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module LuxCUDA

using Reexport

@reexport using CUDA, CUDA.CUDAKernels, NNlibCUDA, cuDNN
@reexport using CUDA, CUDA.CUDAKernels, cuDNN

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

Expand Down

2 comments on commit ad30f8b

@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/86775

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.2.0 -m "<description of version>" ad30f8b8cd25219db584381a2bb1b676721d0773
git push origin v0.2.0

Please sign in to comment.