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

Commit ad30f8b

Browse files
author
Avik Pal
authored
Merge pull request #4 from LuxDL/ap/nnlibcuda
Drop NNlibCUDA dependency
2 parents 95fcdd5 + f2855f2 commit ad30f8b

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

.buildkite/pipeline.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,11 @@ steps:
1919
julia:
2020
- "1"
2121
- "1.6"
22-
- "1.9-nightly"
2322
- "nightly"
2423
adjustments:
24+
- with:
25+
julia: "1.6"
26+
soft_fail: true
2527
- with:
2628
julia: "nightly"
2729
soft_fail: true

.github/workflows/CI.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ jobs:
2020
version:
2121
- "1"
2222
- "1.6"
23-
- "~1.9.0-0"
2423
steps:
2524
- uses: actions/checkout@v3
2625
- uses: julia-actions/setup-julia@v1
@@ -44,4 +43,3 @@ jobs:
4443
- uses: codecov/codecov-action@v3
4544
with:
4645
files: lcov.info
47-
flags: ${{ matrix.group }}

Project.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
name = "LuxCUDA"
22
uuid = "d0bbae9a-e099-4d5b-a835-1c6931763bda"
33
authors = ["Avik Pal <avikpal@mit.edu> and contributors"]
4-
version = "0.1.2"
4+
version = "0.2.0"
55

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

1211
[compat]
13-
CUDA = "4.1"
14-
NNlibCUDA = "0.2"
12+
CUDA = "4"
1513
Reexport = "1"
1614
cuDNN = "1"
1715
julia = "1.6"

src/LuxCUDA.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module LuxCUDA
22

33
using Reexport
44

5-
@reexport using CUDA, CUDA.CUDAKernels, NNlibCUDA, cuDNN
5+
@reexport using CUDA, CUDA.CUDAKernels, cuDNN
66

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

0 commit comments

Comments
 (0)