Skip to content

Commit

Permalink
Merge pull request #126 from miguelraz/master
Browse files Browse the repository at this point in the history
Newline return
  • Loading branch information
vchuravy authored Oct 4, 2019
2 parents f26fd0a + b0d5302 commit 0bdb88f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/slurm.jl
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ function launch(manager::SlurmManager, params::Dict, instances_arr::Array,
srun_cmd = `srun -J $jobname -n $np -o "$(joinpath(job_file_loc, "job%4t.out"))" -D $exehome $(srunargs) $exename $exeflags $(worker_arg())`
srun_proc = open(srun_cmd)
for i = 0:np - 1
print("connecting to worker $(i + 1) out of $np\r")
println("connecting to worker $(i + 1) out of $np")
local w=[]
fn = "$(joinpath(exehome, job_file_loc))/job$(lpad(i, 4, "0")).out"
t0 = time()
Expand Down

0 comments on commit 0bdb88f

Please sign in to comment.