Skip to content
Closed
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion test/distributed_multi_gpu.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using Distributed
addprocs(2)
@everywhere using DiffEqGPU, OrdinaryDiffEq, Test, Random
@everywhere using DiffEqGPU, OrdinaryDiffEq, Test
@everywhere using Random
@everywhere include("utils.jl")

@everywhere begin
Expand Down
4 changes: 2 additions & 2 deletions test/reduction.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ using OrdinaryDiffEq, DiffEqGPU, Test
include("utils.jl")

seed = 100
using Random;
Random.seed!(seed);
using Random
Random.seed!(seed)
ra = rand(100)

function f!(du, u, p, t)
Expand Down
Loading