This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from LuxDL/ap/luxcuda
Start using LuxCUDA
- Loading branch information
Showing
19 changed files
with
415 additions
and
783 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,15 @@ | ||
name = "LuxLib" | ||
uuid = "82251201-b29d-42c6-8e01-566dec8acb11" | ||
authors = ["Avik Pal <[email protected]> and contributors"] | ||
version = "0.1.12" | ||
version = "0.1.13" | ||
|
||
[deps] | ||
CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba" | ||
CUDAKernels = "72cfdca4-0801-4ab0-bf6a-d52aa10adc57" | ||
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4" | ||
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210" | ||
KernelAbstractions = "63c18a36-062a-441e-b654-da1e3ab1ce7c" | ||
LuxCUDA = "d0bbae9a-e099-4d5b-a835-1c6931763bda" | ||
Markdown = "d6f4376e-aef5-505a-96c1-9c027394607a" | ||
NNlib = "872c559c-99b0-510c-b3b7-b6c96a88d5cd" | ||
NNlibCUDA = "a00861dc-f156-4864-bf3c-e6376f28a68d" | ||
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" | ||
Requires = "ae029012-a4dd-5104-9daa-d747884805df" | ||
ReverseDiff = "37e2e3b7-166d-5795-8a7a-e32c996b4267" | ||
|
@@ -29,13 +27,11 @@ LuxLibReverseDiffExt = "ReverseDiff" | |
LuxLibTrackerExt = "Tracker" | ||
|
||
[compat] | ||
CUDA = "3, 4" | ||
CUDAKernels = "0.3, 0.4" | ||
ChainRulesCore = "1" | ||
ForwardDiff = "0.10" | ||
KernelAbstractions = "0.7, 0.8" | ||
KernelAbstractions = "0.9" | ||
LuxCUDA = "0.1" | ||
NNlib = "0.8" | ||
NNlibCUDA = "0.2" | ||
Requires = "1" | ||
ReverseDiff = "1" | ||
Tracker = "0.2" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
function _normalization(x, running_mean, running_var, scale, bias, reduce_dims, training, | ||
momentum, epsilon) | ||
Base.depwarn("`LuxLib._normalization` with `reduce_dims` of type " * | ||
"$(typeof(reduce_dims)) has been deprecated and will be removed in v0.2" * | ||
". Pass `reduce_dims` as `Val(Tuple(reduce_dims))`", :_normalization) | ||
Base.depwarn("""`LuxLib._normalization` with `reduce_dims` of type | ||
$(typeof(reduce_dims)) has been deprecated and will be removed in v0.2. | ||
Pass `reduce_dims` as `Val(Tuple(reduce_dims))`""", :_normalization) | ||
return _normalization(x, running_mean, running_var, scale, bias, | ||
Val(Tuple(reduce_dims)), training, momentum, epsilon) | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
c1bb495
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator register
c1bb495
There was a problem hiding this comment.
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/80423
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: