Skip to content

Commit

Permalink
More small tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
nefrathenrici committed Jul 17, 2024
1 parent 92d9618 commit 3e9ad16
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
1 change: 0 additions & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ makedocs(
"Getting Started" => "quickstart.md",
"ClimaAtmos Setup Guide" => "atmos_setup_guide.md",
"Emulate and Sample" => "emulate_sample.md",
"Precompilation" => "precompilation.md",
"API" => "api.md",
],
)
Expand Down
5 changes: 2 additions & 3 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
ClimaCalibrate.jl is a toolkit for developing scalable and reproducible model
calibration pipelines using CalibrateEmulateSample.jl with minimal boilerplate.

To use this framework, component models (and the coupler) define their own versions of the functions provided in the interface (`get_config`, `get_forward_model`, and `run_forward_model`).

Calibrations can either be run using pure Julia, the Caltech central cluster, or CliMA's GPU server.
To use this framework, component models (and the coupler) define their own versions of the functions provided in the interface.
Calibrations can either be run using just Julia, the Caltech central cluster, or CliMA's GPU server.

For more information, see our Getting Started page.
2 changes: 1 addition & 1 deletion src/pbs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function generate_pbs_script(
#PBS -q $queue
#PBS -o $member_log
#PBS -l walltime=$walltime
#PBS -l select=$num_nodes:ncpus=$cpus_per_node:ngpus=$gpus_per_node:ompthreads=1
#PBS -l select=$num_nodes:ncpus=$cpus_per_node:ngpus=$gpus_per_node:mpiprocs=$ranks_per_node
$module_load_str
Expand Down
2 changes: 1 addition & 1 deletion src/slurm.jl
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ function wait_for_jobs(
push!(completed_jobs, m)

Check warning on line 71 in src/slurm.jl

View check run for this annotation

Codecov / codecov/patch

src/slurm.jl#L69-L71

Added lines #L69 - L71 were not covered by tests
end
end
sleep(5)
sleep(10)
end

Check warning on line 75 in src/slurm.jl

View check run for this annotation

Codecov / codecov/patch

src/slurm.jl#L73-L75

Added lines #L73 - L75 were not covered by tests
catch e
kill_job.(jobids)
Expand Down

0 comments on commit 3e9ad16

Please sign in to comment.