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

Commit

Permalink
Drop NNlibCUDA dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
avik-pal committed Jul 3, 2023
1 parent 95fcdd5 commit f2855f2
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

0 comments on commit f2855f2

Please sign in to comment.