Skip to content

Added GPU Support #923

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
1 change: 0 additions & 1 deletion src/discretize.jl
Original file line number Diff line number Diff line change
@@ -321,7 +321,6 @@ function get_numeric_integral(pinnrep::PINNRepresentation)
return integration_arr
end
end

"""
prob = symbolic_discretize(pde_system::PDESystem, discretization::AbstractPINN)

13 changes: 11 additions & 2 deletions src/eltype_matching.jl
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
struct EltypeAdaptor{T} end

(l::EltypeAdaptor)(x) = fmap(Adapt.adapt(l), x)
function ensure_same_device(x, device)
if (typeof(x) != device) && !(x isa Number)
error("Device mismatch detected. Ensure all data is on the same device.")
end
return x
end


(l::EltypeAdaptor)(x) = fmap(y -> ensure_same_device(y, l), x)

function (l::EltypeAdaptor)(x::AbstractArray{T}) where {T}
return (isbitstype(T) || T <: Number) ? Adapt.adapt(l, x) : map(l, x)
return (isbitstype(T) || T <: Number) ? x : map(y -> ensure_same_device(y, l), x)
end

function Adapt.adapt_storage(::EltypeAdaptor{T}, x::AbstractArray) where {T}