File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ mutable struct SlurmManager <: ClusterManager
1010 launch_timeout:: Float64
1111 srun_post_exit_sleep:: Float64
1212 srun_proc
13- custom_worker_flag:: Cmd
1413
1514 function SlurmManager (; launch_timeout= 60.0 , srun_post_exit_sleep= 0.01 )
1615
5352
5453 function Distributed. default_addprocs_params (:: SlurmManager )
5554 our_stuff = Dict {Symbol,Any} (
56- custom_worker_flag = ` --worker` ,
55+ custom_worker_flag => ` --worker` ,
5756 )
5857 upstreams_stuff = Distributed. default_addprocs_params ()
5958 total_stuff = merge (our_stuff, upstreams_stuff)
@@ -73,7 +72,7 @@ elseif v"1.6.0" <= Base.VERSION < v"1.9.0"
7372 function Distributed. default_addprocs_params (:: SlurmManager )
7473 our_stuff = Dict {Symbol,Any} (
7574 :env => [],
76- custom_worker_flag = ` --worker` ,
75+ custom_worker_flag => ` --worker` ,
7776 )
7877 upstreams_stuff = Distributed. default_addprocs_params ()
7978 total_stuff = merge (our_stuff, upstreams_stuff)
You can’t perform that action at this time.
0 commit comments