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

Commit

Permalink
fix: change names
Browse files Browse the repository at this point in the history
  • Loading branch information
avik-pal committed Jul 24, 2024
1 parent 2875b0e commit 947adc6
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion ext/MLDataDevicesAMDGPUExt.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module DeviceUtilsAMDGPUExt
module MLDataDevicesAMDGPUExt

using Adapt: Adapt
using AMDGPU: AMDGPU
Expand Down
2 changes: 1 addition & 1 deletion ext/MLDataDevicesCUDAExt.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module DeviceUtilsCUDAExt
module MLDataDevicesCUDAExt

using Adapt: Adapt
using CUDA: CUDA
Expand Down
2 changes: 1 addition & 1 deletion ext/MLDataDevicesFillArraysExt.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module DeviceUtilsFillArraysExt
module MLDataDevicesFillArraysExt

using Adapt: Adapt
using FillArrays: FillArrays, AbstractFill
Expand Down
2 changes: 1 addition & 1 deletion ext/MLDataDevicesGPUArraysExt.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module DeviceUtilsGPUArraysExt
module MLDataDevicesGPUArraysExt

using Adapt: Adapt
using GPUArrays: GPUArrays
Expand Down
2 changes: 1 addition & 1 deletion ext/MLDataDevicesMetalExt.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module DeviceUtilsMetalExt
module MLDataDevicesMetalExt

using Adapt: Adapt
using GPUArrays: GPUArrays
Expand Down
2 changes: 1 addition & 1 deletion ext/MLDataDevicesRecursiveArrayToolsExt.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module DeviceUtilsRecursiveArrayToolsExt
module MLDataDevicesRecursiveArrayToolsExt

using Adapt: Adapt, adapt
using MLDataDevices: MLDataDevices, AbstractDevice
Expand Down
2 changes: 1 addition & 1 deletion ext/MLDataDevicesReverseDiffExt.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module DeviceUtilsReverseDiffExt
module MLDataDevicesReverseDiffExt

using MLDataDevices: MLDataDevices
using ReverseDiff: ReverseDiff
Expand Down
2 changes: 1 addition & 1 deletion ext/MLDataDevicesSparseArraysExt.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module DeviceUtilsSparseArraysExt
module MLDataDevicesSparseArraysExt

using Adapt: Adapt
using MLDataDevices: CPUDevice
Expand Down
2 changes: 1 addition & 1 deletion ext/MLDataDevicesTrackerExt.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module DeviceUtilsTrackerExt
module MLDataDevicesTrackerExt

using Adapt: Adapt
using MLDataDevices: MLDataDevices, AMDGPUDevice, CUDADevice, MetalDevice, oneAPIDevice
Expand Down
2 changes: 1 addition & 1 deletion ext/MLDataDevicesZygoteExt.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module DeviceUtilsZygoteExt
module MLDataDevicesZygoteExt

using Adapt: Adapt
using MLDataDevices: AbstractDevice, CPUDevice
Expand Down
2 changes: 1 addition & 1 deletion ext/MLDataDevicescuDNNExt.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module DeviceUtilscuDNNExt
module MLDataDevicescuDNNExt

using CUDA: CUDA
using cuDNN: cuDNN
Expand Down
2 changes: 1 addition & 1 deletion ext/MLDataDevicesoneAPIExt.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module DeviceUtilsoneAPIExt
module MLDataDevicesoneAPIExt

using Adapt: Adapt
using GPUArrays: GPUArrays
Expand Down

2 comments on commit 947adc6

@avik-pal
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

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/111642

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

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:

git tag -a v1.0.0 -m "<description of version>" 947adc62451f417dbfc7964d660737917def9b86
git push origin v1.0.0

Please sign in to comment.