Skip to content
Merged
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
13 changes: 9 additions & 4 deletions src/ensemble/basic_ensemble_solve.jl
Original file line number Diff line number Diff line change
Expand Up @@ -182,11 +182,16 @@ function solve_batch(prob,alg,ensemblealg::EnsembleDistributed,II,pmap_batch_siz
tighten_container_eltype(batch_data)
end

function solve_batch(prob,alg,::EnsembleSerial,II,pmap_batch_size;kwargs...)
batch_data = map(II) do i
batch_func(i,prob,alg;kwargs...)
function solve_batch(prob, alg, ::EnsembleSerial, II, pmap_batch_size; kwargs...)
if isempty(II)
throw(ArgumentError("number of trajectories must be positive"))
end
tighten_container_eltype(batch_data)
batch_data = [batch_func(first(II), prob, alg; kwargs...)]
sizehint!(batch_data,length(II))
for i in 2:length(II)
@inbounds push!(batch_data, batch_func(II[i], prob, alg; kwargs...))
end
return tighten_container_eltype(batch_data)
end

function solve_batch(prob,alg,ensemblealg::EnsembleThreads,II,pmap_batch_size;kwargs...)
Expand Down