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
c83f50eb
Commit
c83f50eb
authored
1 year ago
by
pat-alt
Browse files
Options
Downloads
Patches
Plain Diff
try neach nothing
parent
ef514312
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!89
85 overshooting
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
experiments/jobscripts/testing/cali.sh
+1
-1
1 addition, 1 deletion
experiments/jobscripts/testing/cali.sh
experiments/setup_env.jl
+2
-1
2 additions, 1 deletion
experiments/setup_env.jl
with
3 additions
and
2 deletions
experiments/jobscripts/testing/cali.sh
+
1
−
1
View file @
c83f50eb
...
...
@@ -14,4 +14,4 @@ module load openmpi
source
experiments/slurm_header.sh
srun julia
--project
=
experiments
--threads
$SLURM_CPUS_PER_TASK
experiments/run_experiments.jl
--
data
=
california_housing
output_path
=
results mpi grid_search
n_individuals
=
10
n_each
=
$SLURM_CPUS_PER_TASK
threaded
>
experiments/grid_search_california_housing.log
\ No newline at end of file
srun julia
--project
=
experiments
--threads
$SLURM_CPUS_PER_TASK
experiments/run_experiments.jl
--
data
=
california_housing
output_path
=
results mpi grid_search
n_individuals
=
10
n_each
=
nothing threaded
>
experiments/grid_search_california_housing.log
\ No newline at end of file
This diff is collapsed.
Click to expand it.
experiments/setup_env.jl
+
2
−
1
View file @
c83f50eb
...
...
@@ -69,7 +69,8 @@ const N_IND_SPECIFIED = n_ind_specified
if
any
(
contains
.
(
ARGS
,
"n_each="
))
n_each
=
ARGS
[
findall
(
contains
.
(
ARGS
,
"n_each="
))][
1
]
|>
x
->
replace
(
x
,
"n_each="
=>
""
)
|>
x
->
parse
(
Int
,
x
)
x
->
replace
(
x
,
"n_each="
=>
""
)
|>
x
->
x
==
"nothing"
?
nothing
:
parse
(
Int
,
x
)
else
n_each
=
32
end
...
...
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