Skip to content

Commit e2cf794

Browse files
Merge pull request #50 from SciML/ChrisRackauckas-patch-1
Remove tmap vcat reduction
2 parents 03f3c62 + 35ed32e commit e2cf794

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ensemble/basic_ensemble_solve.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ function tmap(f,args...)
229229
Threads.@threads for i in 1:length(args[1])
230230
batch_data[i] = f(getindex.(args,i)...)
231231
end
232-
reduce(vcat,batch_data)
232+
batch_data
233233
end
234234

235235
function solve_batch(prob,alg,::EnsembleSplitThreads,II,pmap_batch_size;kwargs...)

0 commit comments

Comments
 (0)