Skip to content

Commit 08cb6b9

Browse files
committed
[NDTensors] Support for older versions of Julia 1.10 and 1.11
1 parent b5eeb94 commit 08cb6b9

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

NDTensors/Project.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "NDTensors"
22
uuid = "23ae76d9-e61a-49c4-8f12-3f1a16adf9cf"
33
authors = ["Matthew Fishman <[email protected]>"]
4-
version = "0.4.3"
4+
version = "0.4.4"
55

66
[deps]
77
Accessors = "7d9f7c33-5ae7-4f3b-8dc6-eff91059b697"
@@ -45,13 +45,13 @@ TBLIS = "48530278-0828-4a49-9772-0f3830dfa1e9"
4545
cuTENSOR = "011b41b2-24ef-40a8-b3eb-fa098493e9e1"
4646

4747
[extensions]
48-
NDTensorsAMDGPUExt = ["AMDGPU", "GPUArraysCore", "TypeParameterAccessors"]
49-
NDTensorsCUDAExt = ["CUDA", "GPUArraysCore", "TypeParameterAccessors"]
48+
NDTensorsAMDGPUExt = ["AMDGPU", "GPUArraysCore"]
49+
NDTensorsCUDAExt = ["CUDA", "GPUArraysCore"]
5050
NDTensorsGPUArraysCoreExt = "GPUArraysCore"
5151
NDTensorsHDF5Ext = "HDF5"
5252
NDTensorsJLArraysExt = ["GPUArraysCore", "JLArrays"]
5353
NDTensorsMappedArraysExt = ["MappedArrays"]
54-
NDTensorsMetalExt = ["GPUArraysCore", "Metal", "TypeParameterAccessors"]
54+
NDTensorsMetalExt = ["GPUArraysCore", "Metal"]
5555
NDTensorsOctavianExt = "Octavian"
5656
NDTensorsTBLISExt = "TBLIS"
5757
NDTensorscuTENSORExt = "cuTENSOR"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using AMDGPU: ROCArray
22
using NDTensors.GPUArraysCoreExtensions: storagemode
3-
using TypeParameterAccessors: TypeParameterAccessors, Position
3+
using NDTensors.TypeParameterAccessors: TypeParameterAccessors, Position
44

55
TypeParameterAccessors.position(::Type{<:ROCArray}, ::typeof(storagemode)) = Position(3)

NDTensors/ext/NDTensorsCUDAExt/set_types.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using CUDA: CuArray
22
using NDTensors.GPUArraysCoreExtensions: storagemode
3-
using TypeParameterAccessors: TypeParameterAccessors, Position
3+
using NDTensors.TypeParameterAccessors: TypeParameterAccessors, Position
44

55
function TypeParameterAccessors.position(::Type{<:CuArray}, ::typeof(storagemode))
66
return Position(3)

NDTensors/ext/NDTensorsMetalExt/set_types.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Metal: MtlArray
22
using NDTensors.GPUArraysCoreExtensions: storagemode
3-
using TypeParameterAccessors: TypeParameterAccessors, Position
3+
using NDTensors.TypeParameterAccessors: TypeParameterAccessors, Position
44

55
function TypeParameterAccessors.position(::Type{<:MtlArray}, ::typeof(storagemode))
66
return Position(3)

0 commit comments

Comments
 (0)