Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Slurm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
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
Service Desk
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
tud-zih-energy
Slurm
Commits
f6a8e5b7
Commit
f6a8e5b7
authored
18 years ago
by
Christopher J. Morrone
Browse files
Options
Downloads
Patches
Plain Diff
Rewrite test18.14 to print useful errors.
Fix batch environment variable setting.
parent
800222f0
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/common/env.c
+5
-2
5 additions, 2 deletions
src/common/env.c
src/slaunch/slaunch.c
+9
-4
9 additions, 4 deletions
src/slaunch/slaunch.c
testsuite/expect/test18.14
+46
-75
46 additions, 75 deletions
testsuite/expect/test18.14
with
60 additions
and
81 deletions
src/common/env.c
+
5
−
2
View file @
f6a8e5b7
...
...
@@ -927,8 +927,11 @@ int env_array_overwrite(char ***array_ptr, const char *name,
char
**
env_array_copy
(
const
char
**
array
)
{
error
(
"env_array_copy not implented"
);
return
NULL
;
char
**
ptr
=
NULL
;
env_array_merge
(
&
ptr
,
array
);
return
ptr
;
}
/*
...
...
This diff is collapsed.
Click to expand it.
src/slaunch/slaunch.c
+
9
−
4
View file @
f6a8e5b7
...
...
@@ -127,7 +127,9 @@ int slaunch(int argc, char **argv)
int
rc
;
uint32_t
*
hostids
=
NULL
;
log_init
(
xbasename
(
argv
[
0
]),
logopt
,
0
,
NULL
);
char
**
env
;
int
i
,
j
;
/* Initialize plugin stack, read options from plugins, etc. */
if
(
spank_init
(
NULL
)
<
0
)
...
...
@@ -167,8 +169,7 @@ int slaunch(int argc, char **argv)
step_req
.
user_id
=
getuid
();
step_req
.
node_count
=
opt
.
num_nodes
;
step_req
.
num_tasks
=
opt
.
num_tasks
;
/* step_req.cpu_count = opt.cpus_per_task; */
step_req
.
cpu_count
=
0
;
/* FIXME */
step_req
.
cpu_count
=
opt
.
num_tasks
*
opt
.
cpus_per_task
;
step_req
.
relative
=
opt
.
relative
;
step_req
.
task_dist
=
opt
.
distribution
;
step_req
.
overcommit
=
opt
.
overcommit
?
1
:
0
;
...
...
@@ -207,8 +208,12 @@ int slaunch(int argc, char **argv)
params
.
argc
=
opt
.
argc
;
params
.
argv
=
opt
.
argv
;
params
.
multi_prog
=
opt
.
multi_prog
?
true
:
false
;
params
.
envc
=
envcount
(
environ
);
params
.
env
=
environ
;
env
=
env_array_copy
(
environ
);
/* FIXME - should find a better place to set this than here */
env_array_overwrite_fmt
(
&
env
,
"SLURM_CPUS_PER_TASK"
,
"%d"
,
opt
.
cpus_per_task
);
params
.
envc
=
envcount
(
env
);
params
.
env
=
env
;
params
.
cwd
=
opt
.
cwd
;
params
.
slurmd_debug
=
opt
.
slurmd_debug
;
params
.
buffered_stdio
=
opt
.
unbuffered
?
false
:
true
;
...
...
This diff is collapsed.
Click to expand it.
testsuite/expect/test18.14
+
46
−
75
View file @
f6a8e5b7
...
...
@@ -48,79 +48,8 @@ expect {
set job_id $expect_out(1,string)
exp_continue
}
-re "SLURM_($alpha_under)=($alpha_numeric)" {
if {[string compare $expect_out(1,string) "CPUS_ON_NODE"] == 0
&& $expect_out(2,string) > 0} {
incr matches
exp_continue
}
if {[string compare $expect_out(1,string) "CPUS_PER_TASK"] == 0
&& $expect_out(2,string) > 0} {
incr matches
exp_continue
}
if {[string compare $expect_out(1,string) "JOBID"] == 0
&& $expect_out(2,string) > 0} {
incr matches
exp_continue
}
if {[string compare $expect_out(1,string) "LAUNCH_NODE_IPADDR"] == 0} {
incr matches
exp_continue
}
if {[string compare $expect_out(1,string) "LOCALID"] == 0} {
incr matches
exp_continue
}
if {[string compare $expect_out(1,string) "NNODES"] == 0
&& $expect_out(2,string) > 0} {
incr matches
exp_continue
}
if {[string compare $expect_out(1,string) "NODEID"] == 0} {
incr matches
exp_continue
}
if {[string compare $expect_out(1,string) "NODELIST"] == 0} {
incr matches
exp_continue
}
if {[string compare $expect_out(1,string) "NPROCS"] == 0
&& $expect_out(2,string) > 0} {
incr matches
exp_continue
}
if {[string compare $expect_out(1,string) "PROCID"] == 0} {
incr matches
exp_continue
}
if {[string compare $expect_out(1,string) "SRUN_COMM_HOST"] == 0} {
incr matches
exp_continue
}
if {[string compare $expect_out(1,string) "SRUN_COMM_PORT"] == 0
&& $expect_out(2,string) > 0} {
incr matches
exp_continue
}
if {[string compare $expect_out(1,string) "STEPID"] == 0} {
incr matches
exp_continue
}
if {[string compare $expect_out(1,string) "TASKS_PER_NODE"] == 0
&& $expect_out(2,string) > 0} {
incr matches
exp_continue
}
if {[string compare $expect_out(1,string) "TASK_PID"] == 0
&& $expect_out(2,string) > 0} {
incr matches
exp_continue
}
if {[string compare $expect_out(1,string) "UMASK"] == 0} {
incr matches
exp_continue
}
-re "(SLURM_$alpha_under)=($alpha_numeric)" {
set found_vars($expect_out(1,string)) "$expect_out(2,string)"
exp_continue
}
timeout {
...
...
@@ -137,8 +66,50 @@ expect {
wait
}
}
if {$matches != 16} {
send_user "\nFAILURE: Not all SLURM environment variables set ($matches of 16)\n"
# These are the variables for which we are checking existence
# If the number following a variable name is 1, then we check to make
# certain that the value of the env variable is greater than 0
array set good_vars {
SLURM_CPUS_ON_NODE 1
SLURM_CPUS_PER_TASK 1
SLURM_JOBID 1
SLURM_LAUNCH_NODE_IPADDR 0
SLURM_LOCALID 0
SLURM_NNODES 0
SLURM_NODEID 0
SLURM_NODELIST 0
SLURM_NPROCS 1
SLURM_PROCID 0
SLURM_SRUN_COMM_HOST 0
SLURM_SRUN_COMM_PORT 1
SLURM_STEPID 0
SLURM_TASKS_PER_NODE 1
SLURM_TASK_PID 1
SLURM_UMASK 0
}
set total 0
set good 0
send_user "\n"
foreach {slurm_var check_flag} [array get good_vars] {
incr total
if {[info exists found_vars($slurm_var)]} {
if { $check_flag == 1 && $found_vars($slurm_var) <= 0 } {
send_user "FAILURE: Found $slurm_var, but $found_vars($slurm_var) <= 0\n"
} else {
incr good
}
} else {
send_user "FAILURE: Variable $slurm_var not found\n"
}
}
if {$good < $total} {
send_user "\nFAILURE: Not all SLURM environment variables set ($good of $total)\n"
set exit_code 1
}
...
...
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