Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Last julia<1.9 version #5

Merged
merged 1 commit into from
Jul 4, 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
4 changes: 3 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
name = "LuxCUDA"
uuid = "d0bbae9a-e099-4d5b-a835-1c6931763bda"
authors = ["Avik Pal <[email protected]> and contributors"]
version = "0.2.0"
version = "0.2.1"

[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"
NNlibCUDA = "0.2"
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, cuDNN
@reexport using CUDA, CUDA.CUDAKernels, cuDNN, NNlibCUDA

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

Expand Down
Loading