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

Updates for KA 0.9 #1

Merged
merged 3 commits into from
Mar 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ steps:
setup:
julia:
- "1"
- "1.7"
- "1.6"
- "1.9-nightly"
- "nightly"
adjustments:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
matrix:
version:
- "1"
- "1.7"
- "1.6"
- "~1.9.0-0"
steps:
- uses: actions/checkout@v3
Expand Down
8 changes: 3 additions & 5 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
name = "LuxCUDA"
uuid = "d0bbae9a-e099-4d5b-a835-1c6931763bda"
authors = ["Avik Pal <avikpal@mit.edu> and contributors"]
version = "0.1.1"
version = "0.1.2"

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

[compat]
CUDA = "3, 4"
CUDAKernels = "0.4"
CUDA = "4.1"
NNlibCUDA = "0.2"
Reexport = "1"
cuDNN = "1"
julia = "1.7"
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, CUDAKernels, NNlibCUDA, cuDNN
@reexport using CUDA, CUDA.CUDAKernels, NNlibCUDA, cuDNN

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

Expand Down