Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
ECCCo-jl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Patrick Altmeyer
ECCCo-jl
Commits
6f7f8a7e
Commit
6f7f8a7e
authored
1 year ago
by
pat-alt
Browse files
Options
Downloads
Patches
Plain Diff
trying with vertical splitting
parent
bb856298
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!89
85 overshooting
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
experiments/benchmarking/benchmarking.jl
+1
-0
1 addition, 0 deletions
experiments/benchmarking/benchmarking.jl
experiments/jobscripts/testing/mnist.sh
+1
-1
1 addition, 1 deletion
experiments/jobscripts/testing/mnist.sh
experiments/setup_env.jl
+14
-0
14 additions, 0 deletions
experiments/setup_env.jl
with
16 additions
and
1 deletion
experiments/benchmarking/benchmarking.jl
+
1
−
0
View file @
6f7f8a7e
...
...
@@ -176,6 +176,7 @@ function run_benchmark(exper::Experiment, model_dict::Dict)
parallelizer
=
parallelizer
,
store_ce
=
exper
.
store_ce
,
n_runs
=
exper
.
n_runs
,
vertical_splits
=
VERTICAL_SPLITS
,
)
return
bmk
,
generator_dict
end
This diff is collapsed.
Click to expand it.
experiments/jobscripts/testing/mnist.sh
+
1
−
1
View file @
6f7f8a7e
...
...
@@ -13,4 +13,4 @@ module load 2023r1 openmpi
source
experiments/slurm_header.sh
srun julia
--project
=
experiments
--threads
$SLURM_CPUS_PER_TASK
experiments/run_experiments.jl
--
data
=
mnist
output_path
=
results mpi threaded
n_individuals
=
5
n_runs
=
5
n_each
=
1
6
>
experiments/logs/mnist.log
srun julia
--project
=
experiments
--threads
$SLURM_CPUS_PER_TASK
experiments/run_experiments.jl
--
data
=
mnist
output_path
=
results mpi threaded
n_individuals
=
20
n_runs
=
5
vertical_splits
=
1
0
>
experiments/logs/mnist.log
This diff is collapsed.
Click to expand it.
experiments/setup_env.jl
+
14
−
0
View file @
6f7f8a7e
...
...
@@ -220,3 +220,17 @@ STORE_CE = "store_ce" ∈ ARGS
"Boolean flag to chech if best outcome from grid search should be used."
FROM_GRID_SEARCH
=
"from_grid"
∈
ARGS
# Vertical splits for benchmarking:
if
any
(
contains
.
(
ARGS
,
"vertical_splits"
))
@assert
sum
(
contains
.
(
ARGS
,
"output_path"
))
==
1
"`vertical_splits` is specified more than once."
n_splits
=
ARGS
[
findall
(
contains
.
(
ARGS
,
"output_path"
))][
1
]
|>
x
->
replace
(
x
,
"output_path="
=>
""
)
|>
x
->
parse
(
Int
,
x
)
else
n_splits
=
nothing
end
"Number of vertical splits."
VERTICAL_SPLITS
=
n_splits
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment