Skip to content

Commit

Permalink
Bump compat for GPUArraysCore to 0.2, (keep existing compat)
Browse files Browse the repository at this point in the history
  • Loading branch information
fhagemann committed Oct 31, 2024
1 parent 079de79 commit ddf472f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ ElasticArrays = "1"
FFTW = "1"
FillArrays = "0.8.4, 0.9, 0.10, 0.11, 0.12, 0.13, 1"
FunctionChains = "0.1"
GPUArraysCore = "0.1"
GPUArraysCore = "0.1, 0.2"
IntervalSets = "0.7"
InverseFunctions = "0.1.3"
JLArrays = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion src/RadiationDetectorDSP.jl
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ using ElasticArrays
using FFTW
using FillArrays
using FunctionChains
using GPUArraysCore
using IntervalSets
using KernelAbstractions
using InverseFunctions
Expand All @@ -31,6 +30,7 @@ using Unitful

import ChainRulesCore
import DSP
import GPUArraysCore
import SIMD

using Unitful: RealOrRealQuantity as RealQuantity
Expand Down
2 changes: 1 addition & 1 deletion src/transpose.jl
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function _ka_nonlazy_transpose!(
return Y
end

function _nonlazy_transpose(X::AbstractGPUArray{<:Number,2})
function _nonlazy_transpose(X::GPUArraysCore.AbstractGPUArray{<:Number,2})
Y = similar(X, reverse(size(X)));
_ka_nonlazy_transpose!(X, Y)
end

0 comments on commit ddf472f

Please sign in to comment.